Offline Waveform Measuerments

Hey All,
I have a slight problem here. Just look at  "pulse and transition measurements.vi" example provided by NI in LabVIEW. I want to slightly modify this VI and use this in my Project.
I am capturing a waveform (lets assume for 10 cycles) from the Function Generator using DAQmx and storing as a binary file. I want to use this data into "pulse and transition measurements.vi" and take the readings.
When I put this data it shows this error
The type of the source is 1D Array of waveform(DBL)
The type of the sink is waveform(DBL)
I hope you all must have got what i mean to say. Please let me know if you require any further clarifications.
Thank you
Regards,
Sarang Dhananjay Jaiswal
Satyam Development Center, Banglore, INDIA

Hi Sarang,
It sounds like you are getting an 1D array of waveform data, but the input
expects simply waveform data.  What that means is you need to somehow
simply input one of the indices into the VI.  You can use some of the
Array functions to pull out the particular point you want.
Regards,
Otis
Training and Certification
Product Support Engineer
National Instruments

Similar Messages

  • Audio offline in Timeline ONLY; Clips appear red (CS6)

    Very, very, very frustrating issue.
    I have a cut of a scene where the audio has all mysteriously gone offline (the clips in the timeline have turned red, rather than green). No audio plays back. Yet when I select "Reveal in Project", it finds the associated audio file. That audio file plays fine in the Source Monitor, fully online, waveforms, plays back fine. I can select "Edit Original" in the timeline and the original file will open up in iTunes and play fine. I put the file from the Project window offline and reconnected, yet the clip in the timeline doesn't change at all. It is connected, but doesn't act like it. Checking the timeline clip's properties, it says "Online". But it's not.
    The most frustrating thing is that ONE of the shots has online audio that plays back. This is the same audio file as some of the other shots that register as offline!!!!!!!! It's absurd.
    Earlier cuts, using the exact same audio files are all online, all work fine.
    I have deleted my media cache, went back to an earlier auto-save, no luck. When I double-click the clip in the timeline, it opens a blank audio preview in the Source monitor, no waveforms but it does have my In/Out points. I tried copying the timecode and applying it to the ONLINE version of the file from the Project panel, but the timecode was bizarrely different and didn't match so I can't even use the "Replace with Clip" command. It's insane.
    Any insight or help on this issue would be much appreciated. I've already had to go about re-adding clips manually, but hopefully for next time I can have an easier solution...

    A bit same pb happen to me. The cut was OK I close it and a few days after open the project and the sound was in RED. Also all the rush were offline.
    My rush were in  : AVCHD 1080p - Pixels carrés
    Base de temps : 25,00 i/s
    My solution is to copy in the same directory the rush (for exemple 00002.MTS  become 00002_2.MTS) and to reconnect in Premiere the rush 00002.MTS with 00002_2.MTS. (don't know if I am clear !).
    This solves the problem for me.
    Rq : if I clear the original file (00002.MTS) an rename the 00002_2.MTS in 00002.MTS the error is back ! Stange !

  • Can a waveform graph be used without for loop

    i would like to know if a waveform graph can be used without a for loop and if so, how? I tried using a while loop only, but the reading becomes too fast.
    can someone advise

    Dear nebb,
    first of all, graph is usually an offline plot of the acquired data but to use it as an online display u need to use build arrays in for/while loop which keeps on adding new points & plots in waveform graph.
    I am including a vi which incorporates a while loop in which by using build array, points keep on increasing & simultaneously they are plotted in the waveform graph.
    Using for or while loop, it has no concern with speed. it depends on the code inside the loop which makes them faster or slower.
    For making slow readings, you can put some delay inside while looping.
    Hope this works. YOur feedbacks are welcome.
    Best Regards,
    Nirmal Sharma
    India
    Attachments:
    waveform_graph_without_for_loop.vi ‏17 KB

  • Audio edited in Soundtrack Pro is offline in Final Cut Pro

    I'm an owner of iMac 24" and Final Cut Studio Pro.
    When send an audio track to waveform editor and save it, in Final Cut the file is offline 'cause it don't find the "render.mov" file. I've the last suite version and normally this file would have automatically embedded in the file package generated by Soundtrack Pro.
    Thanks a lot for your help.

    i purchased the logic studio suite and it came with 5 jam packs..the other one i spoke of that was bundled with final cut had no additional content outside of the stock basic content in the core program, so my new question would be, if i can locate the individual samples from an earlier version, could i just drop them into the library for use??
    thanks in advance

  • Waveform / playback head not scrolling

    I've installed Cs6 on Windows XP machine. No issues recording or playing back. But the visual waveform and the playback head do not scroll. In other words, from wherever the cursor / playhead is positioned, the audio starts but the playback head remains static in the place from which it started. I can scrub the window and hear audio / see the playback head moving. But, I can't get any visual scroll. Any ideas, assistance would be much appreciated.

    I opened D12 and could not see the problem you're experiencing. Does the playback head not progress even if you start your movie on any frame? If you'd to email me offline with a screenshot and extra info, I may be able to help in finding what the problem is. Email is [email protected]
    Dean

  • Offline media not really offline - resetting thumbnail?

    So my external HD was inadvertantly turned off while in FCP and all my media went off line. Ouch. The HD came back online w/out a problem and I was able to reconnect the media. However, a number of the clips are showing their thumbnail in the timeline with that red and black screen telling me the media is offline, even tho it's not and it plays fine.
    Any idea how to refresh those thumbnails?
    Thanks!

    Ok, that almost worked... but I think you may have meant the "Thumbnail Cache Files" - cause deleted the waveform cache files contents didn't seem to have any effect but deleting the "Thumbnail Cache Files" worked like a charm.
    Thanks for pointing me in the right direction.

  • GarageBand-like waveform motion in Swing

    I have written a custom JPanel that paints an audio waveform to itself after converting the audio file to a double[] representation and bandpass filtering. Needless to say, that takes a while to do, about half a second on my computer.
    Now I would like the the waveform to move smoothly across the screen so that the current audio position stays in the middle of the visible portion of the JPanel. (This is what Apple's GarageBand does when audio is being played back). I need this motion to occur without the waveform panel itself recomputing the waveform drawing every time the visible portion of the wave is shifted.
    What is the best way to achieve this effect? So far I have considered:
    1) Overriding the waveform JPanel's paintComponent() method so it returns an off-screen buffer any time the waveform itself has not changed. At that point I could just stick the JPanel in a JScrollPane and programmatically scroll it.
    2) Programmatically scroll a JScrollPane containing my wave JPanel as described in (1), but find some way to override the "new" scrolling algorithm (described in the API) which repaints the underlying component on every move. This way I would not need to maintain an offscreen buffer for the waveform JPanel.
    Maybe there is some better way? How do people generally scroll JComponents that are very expensive to repaint()?
    I would appreciate advice on this one, perhaps with a link to an example! Thanks in advance.

    FYI, your applet and program do not launch on my computer.
    App error:
    JNLPException[category: Launch File Error : Exception: null : LaunchDesc:
    <jnlp spec="1.0" codebase="http://www.pscode.org/sound/" href="http://www.pscode.org/sound/audiotrace.jnlp">
      <information>
        <title>Audio Trace 1.0</title>
        <vendor>Andrew Thompson</vendor>
        <homepage href="http://www.pscode.org/sound//<p>
    Audio Trace shows an oscilloscope or lissajous style trace of the
    sounds currently playing through your computer. 
    </p>
    <p>
    A variety
    of scroll, zoom and fade effects can be applied to the trace
    for visual interest.
    </p>"/>
        <description kind="one-line">Audio Trace - oscilloscope style sound trace application.</description>
        <description kind="tooltip">Audio Trace</description>
        <icon href="http://www.pscode.org/sound/audiotrace-64x64.gif" height="64" width="64" kind="default"/>
        <icon href="http://www.pscode.org/sound/audiotrace-32x32.gif" height="32" width="32" kind="default"/>
        <shortcut online="false">
          <desktop/>
          <menu submenu="PSCode"/>
        </shortcut>
        <offline-allowed/>
      </information>
      <security>
        <all-permissions/>
      </security>
      <update check="timeout" policy="always"/>
      <resources>
        <java href="http://java.sun.com/products/autodl/j2se" version="1.3+"/>
        <jar href="http://www.pscode.org/sound/audiotrace.jar" download="eager" main="true"/>
      </resources>
      <application-desc main-class="org.pscode.sound.AudioTrace"/>
    </jnlp> ]
         at com.sun.javaws.LaunchDownload.getMainClassName(LaunchDownload.java:1037)
         at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1075)
         at com.sun.javaws.Launcher.run(Launcher.java:105)
         at java.lang.Thread.run(Thread.java:613)
    Applet error:
    NoClassDef for MultipleGradientPaint

  • HP AIO Remote shows wireless printer offline when it is online and can print to it.

    HP AIO Remote installed on my Windows 8.1 Yoga 2 shows my wireless printer is offline, when it is online and I can print to it wirelessly.  How can I get it to recognize my wireless printer is online wirelessly?  AIO Remote will only recognize the printer is online when the USB in connected to the Yoga 2.

    Hi rpmcintyre,
    Thank you for the additional information.  I apologize for misunderstanding. I just want to confirm that the HP AiO app that you downloaded onto your Windows 8.1 computer is showing your printer as offline when you are able to print wirelessly to the printer.
    I have two different documents for you.  The first one is How to Use the HP AiO Remote App for Windows 8.  It has a FAQ section at the bottom of the document with trouble shooting steps.  I have also included the Supported Printers for the HP Scan and Capture App.
    If the above documents don’t assist you, would you please let me know which make/model/product number of HP printer that you have? How Do I Find My Model Number or Product Number?
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How can i display Waveform chart in a subpanel using Vi templates.

    Hi All
    I am new to Labview hence need  some help. I am trying to develop an application which reads some data from a Wireless Sensor Network (WSN). The WSN consists of base station connected to the USB port which recieves data from other sensor nodes.  The data comes in a certain format.  Node name, temperature reading, humidity reading etc. I want to read the data from the serial port and  based on the Node name, i want to display the information for each node in s separate window or subpanel etc. So if a new node is detected then a new window is created for that node. Since all the nodes have the same sensors on board i only need a one template. I can read the data using the serial port, parse the data to detect which node it is and also what the sensor readings are. I have created a template VI for the sensor node. I am having problems in displaying the template VIs in a subpanel. I can succesfully display a Waveform graph in the subpanel but i am having problems in displaying a waveform chart in the subpanel. I can see the actual waveform chart in the subpanel, but i cannot see the plot. Would be greatful if someone could point out what i am doing wrong here.
    Many Thanks
    Raza
    Solved!
    Go to Solution.
    Attachments:
    template_graph.vi ‏16 KB
    graph_template.vit ‏11 KB

    Hi All
    I think i have solved the problem. It seems like i was running the Vi in a loop. I have taken the Run Vi outside the while lopp and this works fine. Also i need to close the reference at the end.
    Raza

  • How can I keep just one of two accounts offline in Mac Mail?

    I recently switched from Comcast to Cox Cable. Cox has a known issue with push notifications and email doesn't show up at regular intervals. You have to go offline and back on or quit Mail and then open it again to see new messages. It's a pain but it works.
    I still have my Comcast email account enabled on Mac Mail because I need access to old emails and if I disable it (via Preferences), it disappears. I want to take it offline but clicking on the Comcast account and "take comcast.net offline" always takes my Cox account offline as well. I can't get them to both stay online because the Comcast account hangs when it can't connect to Comcast. This really exacerbates the already annoying issue of having to take Cox offline and back on.
    I tried going into the Comcast account via Preferences and unchecking "include when automatically checking for new messages" but when I did so, it kept the Cox account from receiving any messages at all (I confirmed this by checking webmail, and by toggling it on and off to see what happened).
    I need some solution that allows me to see the comcast account in mail without having it be active in any way. I have other mailboxes archived but that process doesn't offer the search capability that I need.

    Aha! I have been doing just that. However, what has been tripping me up is that I am also used to clicking the Go Online/Go Offline toggle button on the top menu bar when I manually check for messages on Cox. Apparently when you take one inbox offline, that button switches to Off even though the other inbox is still online. If I just ignore that button and go on or off via the cox mailbox listing, it keeps comcast from being reactivated.
    Thanks so much for helping me think this through.
    Edited to add: I removed that dang button from my menu so I can stop clicking it.

  • How can i print out the waveform chart?

      hello everybody,
    how can i print out the "waveform chart". can i do it just push the button. ( example; stop button is stop the program etc..)
    i checked the NI examples but i can't understand. i'm new to the Labview.
    pls help me.
    i added the my program
    look forward your reply
    regards from turkey...
    Message Edited by hknmkt on 05-29-2008 04:15 AM
    Attachments:
    29.05.2008_11.vi ‏37 KB

        hi jim,
    i tried the program but it's not running. When i run the program, it's print out without run the program
    i added the printed file.
    look forward your reply
    hakan
    Attachments:
    error8.JPG ‏8 KB

  • Is there any way to tell if someone has cleared and reused a lost Ipod touch? Or will it continue to show up as offline in Find Iphone app?

    I have the app Find Iphone, and my kids' ipods are linked to the app because we share an itunes account. My son cannot find his ipod, in which, he took it on a mini-vacation with friends. He never took it out of their vehicle, but it may have fallen out at some point, just not sure. When I check my app, it simply reads offline. I want to know if there will be a way to know if someone has reset it (even if I cannot locate them)? I don't want to keep wasting my time looking to see if it somehow was connected to the internet when it has already been cleared. Help pleased?

    Will it continue to say that the device is in lost mode if it has been restored?  My Find Iphone is saying that when the device is connected to the internet that it will be locked and that a message (that I typed in) will appear. It also says that I will be notified and that a sound will occur when it is connected. Now my iphone has been updated to the ios7, but I don't think his ipod was updated.

  • How can I tell if an arb is currently generating a waveform? (LabView 8.5)

    I have a VI which configures the load impedance of a 5421 arb card by changing the value of the property node "Load Impedance".
    This only works if the arb is not generating at the time of the call to the VI.
    I wish to be able to call the function when the arb is either generating, or not generating a waveform.
    Is there a way I can determine whether the arb is generating a waveform so that if necessary it can be aborted, then the Load Impedance changed, then the output re-initiated?
    Thanks
    Alan

    The fastest way to do this is to Disable the output (with enable output.vi) change the impedance and re-enable the output.
    Of course if you want to wait untill a generation session is complete you will need to configure the Done event to output something you can monitor (hardware only for unknown reasons) and use that to gate your changes.
    Jeff

  • HP LaserJet 600 M602 printer goes offline every night

    Hi,
    I have a HP LaserJet 600 M602 CE991A printer on a wired network. I have quite a few other printers on the network as well and do not show me this kind of behavior.
    But for some reason, this printer, from as soon as I bought it, goes offline every time from around 5.20-5.30pm to around 8.30pm. I have a ping tester running as I am trying to figure out what's going on and I got 100% drop every night for that time period.
    I looked to see if there was a setting that puts this device to sleep or so but no, I cant find anything. I have tried with the energy setting sleep mode on or off, wake up events to trigger a wake up call to the printer but no luck.
    Firmware Bundle Version3.2.5
    Firmware Revision2302908_435019
    Firmware Date Code20140529
    I am out of options, in our other locations, we have sam printer but a CE993A models and they do not show this kind of behavior at all.
    I am at a deadlock here.

    Hi @Halan ,
    I see by your post that you aren't able to print when the laptop isn't in the same area as the printer. I would like to help you out today.
    What is the distance of the printer and the Laptop when the printer goes offline?
    Try these steps to see if it will resolve the issue.
    'Printer is offline' Message Displays on the Computer and the HP Printer Will Not Print.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • HP PhotoSmart 6520, Printer offline, Wireless printing from Windows 8.1 and others

    My parents own an HP PhotoSmart 6520. They have 3 or 4 computers. 1 Is connected to this printer via USB cable. 3 Are "connected" over wireless. The printer has the latest firmware updates according to checks from the printer front display.
    Problem is this:
    1) When first starting the printer, and the printer gets on the wifi network, all wifi-available devices can print to it over wifi. We are also able to browse to the printer config web pages to see status, and change configs as needed.
    2) After about 5 minutes of printer inactivity, all wireless clients can't print to the printer to print, and can't connect to the printer's web page. (The printer appears to be offline to each OS that uses WiFi to get Internet access.
    3) If we visit the printer control screen, physically attached to the pinter, find the network configuration, and choose to "turn off" wifi at the printer, then after off, "turn on" wifi and see an IP address get assigned, then all WiFi machines can print to the printer over WiFi. However, after 5 minutes, again, the printer is offline. No matter what or how much each WiFi-based machine sends to their printer queue/spool, the printer remains offline.
    4) If the USB-connected machine prints to the printer over USB, the printer once again becomes available over the wireless network.
    The work-around is terrible. (Cycle WiFi access every time they need to print from Wireless devices.)
    Things we have tried:
    1) This is running the latest firmware according to the WebService section request to check for upgrades. They are on the latest according to the results. (no help)
    2) DHCP was the initial config for network settings. I moved to a DHCP server configuration with static IP served by printer MAC address. (No help)
    3) I switched to totally static IP address, thinking it might be a DHCP lease-time/renewal issue, or custom vendor string issues or bug. (no help)
    4) Enabled/Disabled IPv6 even though they are on a NAT-ed network with only IPv4 support. (no help)
    5) Visited printer config with web broswer, and change energy saver setting from "5 minutes" to "15 minutes" because the ~5 minute window seemed like an approximate time limit. (No help)
    6) Enable/Disable other settings through the web and restart the printer. (No help.)
    7) Suggestions listed here: http://support.hp.com/us-en/product/HP-Photosmart-6520-e-All-in-One-Printer-series/5169038/model/516... (No help)
    In testing this, with static IP or not, from other machines, when we can print over WiFi to the printer, the IPv4 address is ping-able from peers on the network. After ~5 minutes pass, and the pinter goes "offline" there are no ping replies to the static or other IP address assigned to this printer. By all accounts, when the printer is "offline" it really is no longer on the WiFi network. Meanwhile, oter devices can ping each other. (All computers, smartphones, tablets, etc can all respond to ping.)
    None of the other devices suffer from dropped access to the WiFi and Internet.
    Suggestions?
    I do not have access to this right now, but I can walk my parents through whatever steps are needed to resolve this.
    Thanks!
    P.S. Other things tried:
    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/If-your-printer-drops-off-your-network/...
    1) When online, generating report, reports online
    2) When offline, report reports that it is still associated with access point
    3) Printer is about 2 feet away from the access point it is communicating with and has max-bars showing signal strength.
    4) Channel allocation for WiFi was selected based on least used channel, and works very well for all other devices on this channel.
    5) There is only one accesspoint with the name it associates with.
    6) The only options for power-saving "auto-off" we see via web pages from printer are: 5 minutes, 10 minutes, and 15 minutes, and changing to 15 minutes does not allow the printer to remain online for 14 minutes -- it still goes offline to the network after ~5 minutes -- even agfter changing this settings and power cycling the printer.
    7) No wireless extender is being used.
    8) We tried static IP, Dynamic IP, and statically assigned DHCP served IP.
    Once printer is "offline" when visiting printer to tell printer to disable WiFi access, then re-enable it, all machines with items in their printer queue/spool *immediately* de-queue/de-spool their printer jobs to the printer.
    This is the closest description: http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/Photosmart-6520-goes-off-line/td-p/324... Where is that patch?

    Hi @TheSynAck,
    I see you are using a Hot Spot, I believe we have found the reason for the connectivity issues. There may be a setting that needs to manually configured for the Hotspot to 'allow' your printer access. Also, hotspots may have limitations and restrictions that may cause connectivity issues.
    Take a look here: Setting up the Printer as a HotSpot, it shows a Laserjet but the same steps apply.
    Keep in mind that Hotspot connections are 'best effort' connections due to the issues of inconsistencies within the connection. They are not routers. Therefore, you may experience issues in the future when using the Hotspot for your connection. Usually a powercycle or hard reset of the HotSpot will resolve such issues.
    I would not recommend getting another Hot Spot as the connection is not guaranteed, you could however try a Wireless Router if you are looking to upgrade anyways.
    With the PS 6520 you also have the ability to print using the HP Wireless Direct printing option. Please click on the link below to get started:
    HP Wireless Printers - Printing with HP Wireless Direct
    I hope this gives you a better understanding of the intermittent connection issues.
    Thanks again,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

Maybe you are looking for

  • Java.lang.NoClassDefFoundError: org/apache/jsp/login_jsp

    sorry once again to hijack earlier .

  • Attribute QUEUE_NAME is initial Error

    Hallo, when I´m calling an BAPI over RFC and with QoS=EOIO then the following error occure: Result: <SAP:Error> <SAP:Category>XIServer</SAP:Category> <SAP:Code>INTERNAL.ATTRIBUTE_INITIAL</SAP:Code> <SAP:P1>QUEUE_NAME</SAP:P1> <SAP:Stack>Attribute QUE

  • Sharing AVI files

    I recorded a short video for a demonstration for my co-workers and saved the .avi file to my hard dri've. Upon playing the files in Windows Media Player only audio was present...no video. I find it hard to believe that Windows Media Player won't play

  • How do I minimize to system tray?

    I am just new to Firefox and it looks pretty good, but I would always like to have it open and so when I minimize I would like it to show as an icon in the Systems Tray. How can I achieve this?

  • Clickwheel Issue

    I got my iPod Nano 16 GB 4th Generation for Christmas and recently the click wheel is not working. The lock button works fine, if you shake the iPod it will shuffle and play the music, and if you hold down the menu and center buttons it will reset; b