How to draw a picture of waveforms?

The computer on which I build my VI doesn't have internet access, so I can't post my code (so I'm going to use as much detail as possible)

I take the DAQ measures for four devices that come as (I think) an array of dynamic data type. I split the signal and I have each its own dynamic data type output channel. After an interval of time specified by the user, a timed, while the loop will trigger data acquisition to a measurement and write the data to a file and plot the data. Writing file was easy, but I'm stuck on the appearance of tracing.

What I have: given that efficiency will not be a problem (average time delay of ~ 15 minutes), I created a dynamic data type shift register. Each iteration of the while loop, I add the data newly acquired an array of dynamic data by using the function BuildArray. I have to be able to take this and it draw in a graph, but each time I try it tells me that the dimensions of the source and the receiver do not match. Also, I need it for each of the four data sets (and put them on the same plot).

What can I do to get plottable data in my shift register?

I can't open files .VI, then I would really appreciate if I could get answers in images of diagrams or text. Thank you.

Hi nc61,

stay away from DDT (dynamic data type) and you'll be fine. Especially trying to collect data by setting up arrays of DDT (which probably is not what you really want)...

-Use DAQmxRead to get the data tables or waveform (s). BuildArray use for simple data or functions of wave shape of waveforms to collect data on the move of the registry. It will be easy with these tracking data!

-There's the finder of the fine example known in the LabVIEW Help menu. Try it...

Tags: NI Software

Similar Questions

  • How to draw a picture of a spaceship from star trek phaser

    http://i37.Photobucket.com/albums/E51/sovereign001/example_zps7d923008.jpg

    I pointed out in the example.

    I don't have a clue how to start drawing. No doubt its so simple I'm looking top...

    Any explanation would be appreciated!

    Sovereign salvation and Jacob!

    I associated some images to help you follow the excellent instructions of Jacob. Here you go:

    1. create a circle with a stroke and no fill. This eventually becomes thick circle on your phaser array, then give him a thick line and rounded tips.

    2. find the scissors tool and click twice on the way to circles indicating where you want to remove a part of the circle.

    Click along the line between the two points and delete the part.

    3 choose object > path > outline STROKE. What Jacob meant by 'give the desired time and filling', is that AFTER having chosen the line of contour, you now can fill this object with a color and give it a new trait. I chose to fill red mine and give her a 2pt to illustrate the difference.

    4 now, choose object > path > offset path. Be sure to check "Preview" to see the changes that you make. Must you really just change the offset value. I chose 5 px.

    Now, you have options.

    Since it's two objects, I selected the external object and removed the filling. On the inside, I removed the black line. This is the result.

    I hope this helps to illustrate the points of Jacob!

    See you soon,.

    Michael

  • How to draw a box under a trace of waveform?

    Hi all

    I have a graph of waveform of 3000 point showing a series of peaks.  For one of these peaks, for which I know the beginning and end clues, I would draw a box under the waveform on the graph, to highlight its position programmatically.  I don't know if there is a way to do it.

    I figured out how to draw cursors at the beginning and at the end, but finally I do for multiple peaks, and forest of cursors quickly becomes confused.  A simple shaded box works much better.

    Any ideas?

    Many thanks in advance,

    RipRock99

    A great thank you GerdW!

    The code LV was very close to what I wanted to do and is easy to use to determine how to make my code produces the result I wanted.  Basically, I added another form of wave to my chart, using my known indices x to set the values of Y for the areas I wanted to be gray as + infinity and leaving the rest to =-infinity.  I then plotted this second graph on top of the original waveform and the property node to set the fill indicator for - infinite.

    That does not answer the general question of how to draw a filled rectangle with the coordinates on a graph, but this does not fix what I wanted to achieve.

    Bravo and thanks,

    RipRock99

    PS: I'm including a preview of the result and a snapshot of the code used to define the property node programmatically.  I do not understand my code just as it is complicated, and I would also need to add a large set of data.  I hope that the pictures are enough to help someone else referencing this Council!

  • I installed a trial of Illustrator from Adobe on my macbook pro. I want to draw a picture using the custom trace button but can not. Does anyone have any ideas how I could track custom?

    I installed a trial of Illustrator from Adobe on my macbook pro. This is the release of 2014 of the adobe Illustrator. I want to draw a picture using the custom trace button.

    I start a new document. Then I place my scanned pencil/color pencil, drawing, in the document. I tried to scan and then placing it as jpeg, bitmap and a tiff file. I tried scanning and place then, in color and in black and white. The scan mode that I use is flat. Adobe Illustrator allows me to select the default button and one of the eleven preset buttons (e.g. photo high fidelity), but cannot me click on the record button custom. The custom trace button is gray while all other buttons are white.

    Does anyone have any ideas how I could track custom?

    Just it trace, and then change the options later. The follow-up is 'live', you can press the buttons and see what happens.

    See also the manual.

  • How to draw a smooth line (small in some places, in others) like in this picture

    intaward.jpg

    Check the image I attached above. I need to design a different logo. But to draw like this because the two logos will be placed together (they must match). So someone knows how to draw the smooth line that is low in some places and large in others? How to add this effect? IM using Illustrator CS5.

    He number of ways yu area can make a brush with a thick and thin profile, or create a profile for a stroke, or you can draw paths with even simple traits and then survive strokes and adjust the width then

    or you can draw paths with even stroke and the use of the width tool to adjust the widths.

    It is with the paths with the same shots

    Here, after I used the width tool to adjust the width of the strokes

  • How to draw an image with reflection effect?

    Hi!, someone know how to draw an image with reflex effect?. I develop in JDE 4.7 with the simulator of the storm. I want to put a picture below a reflex effect as Apple Inc. and normal. My request is a CLDC and I use a MainScrren class, this is an example of what I want to draw:

    Angel

    Hello

    I found the code on the net, it works very well on j2me that even can be used also in blackberry below.

    public static Image createShadow(Image image) {
    
            int newX = image.getWidth();
            int newY = image.getHeight()/2;
             int out[] = new int[newX*newY];
             int row[] = new int[newX];
    
            for (int iy = 0; iy < newY; iy++)
            {
              image.getRGB(row,0,newX,0,iy+newY,newX,1);
              for (int i = 0; i < row.length; i++) {
                  out[((newY-1)*newX-iy*newX)+i] = row[i] & ( (127*iy/newY)<< 24 | 0xffffff);
              }
            }
    
            return Image.createRGBImage(out,newX,newY,true);
        }
    

    Hope this will solve you problem.

    Please let me know if it solves your problem or not.

  • Can someone show me how to draw this photorealistic image?

    Hi all

    Is there someone who could teach me how to draw "photorealistic" details in the attached picture?

    Financial compensation is available.

    Thank you very much

    David
    Figure.jpg

    It is very likely that anyone can teach you how to draw on a bulletin board.

  • How do I save pictures to my e-mail on photos on 10 ios app?

    How do I save pictures to my e-mail on photos on 10 ios app?  Economy option disappeared on ios 10

    The option is always there. You should press and hold on the image a little longer and then when the backup or copy of the window opens, save the Image is on the bottom row, but you may have to slide to the left to reveal. Once you find it, you can reorder the options by dragging the 3 lines to the right upwards or downwards as see fit you.

  • How can I post pictures to the resulting internet forum photo album?

    How can I post pictures to a photo album on an internet forum?

    Use Safari or any web browser that supports the media browser and upload them (in the window download selection to the bottom of the left pane under media source == > photos == > Photos)

    LN

  • How to attach a picture to the default email

    How to attach a picture to the default email

    Since the iPhone user Guide:

    http://help.Apple.com/iPhone/9/#/iph3caef30a

  • How can I transfer pictures from my computer to the iphone 5 using icloud

    How can I transfer pictures from my computer to the iphone 5 using icloud

    Normally, you do not use iCloud for this, you use iTunes, as shown below, but you can use iCloud photo library if that's your preference.

    Keep your photos safely stored and updated on all your devices - Apple Support

  • How can I take pictures in 16:9?

    Hello

    Normally, when I take pictures, they are 3264 × 2448 pixels = 4:3.

    How can I take pictures in 16:9?

    I know that I can crop a 4:3 picture later, but I'd like to see the correct size before taking pictures.

    Is it possible, or do I need an additional application for that?

    Thank you very much!

    See if you can find an app for that. The native application of the camera's native resolution or square.

  • How do you get pictures stored in the photo library of iCloud?

    How do you get pictures stored in the photo library of iCloud?

    Richard

    Tucson

    You can use a browser of the computer (for example, Safari) and you connect to https://www.icloud.com/ and open the Photos app here.

    Will be also in the pictures on any device where you have iCloud library lit. On a Mac, it is turned on via the Apple menu > System Preferences > iCloud > Photos > iCloud photo library. On a Mac to OSX Yosemite 10.10.3 or later version. See below for more information: https://support.apple.com/en-us/HT204264

  • Learn how to draw correctly

    You guys should learn how to draw your windows properly on the screen. There is a company called Microsoft which makes my operating system, the guys maybe you should contact them and get advice.

    I'm using the latest drivers from Microsoft. Can you ask them to fix the drivers? / s

  • How to avoid the pictures to open automatically?

    Whenever I insert a SD card to download images Photos 1.2 app automatically opens.

    Quite annoying especially because I use this app at all.

    How can I avoid pictures opens automatically?

    Thank you!

    Photos doesn't have an option to disable the launch of all devices.

    When the Import Photos Panel opens, you should see a check mark in the toolbar 'Open pictures for the device'.   Clear this check box and Photos should not open again for this device (until you reformat the card).

    The automatic launch can be disabled for each camera separately.

    You can try this fix: this Terminal command allows to disable auto-start for any photo application, not just Photos.

    • Photos of quit smoking and unplug any camera.
    • Open a Terminal and paste this command and press return:

    defaults write currentHost - com.apple.ImageCapture disableHotPlug - bool YES

    • Restart the Mac. It is not necessary, but it worked for me after the reboot.

    I found this fix in a post of JadedEye ( leonie)

    https://discussions.Apple.com/message/29506561#29506561

Maybe you are looking for

  • Why type break on firefox?

    Type becomes blurred and breaks down after a few minutes opening browser. He moves from one line to the page and is frustrating the type becomes unreadable.

  • HP mini 110-3100: not found boot device

    Hello.. Why when I reboot my hp mini 110-3100, he says this not found boot device, please install an OS on your hard drive. so I will try to run the hard drive test and it say the drive does not exist. How I solve this problem? I try to format it, bu

  • apparent spread of permissions / legacy - windows Bug problem

    IM using XP MCE and it is the series of events that will make a beginning user who uses to get frustrated because simple file sharing. I am writing here because fresh MS of money and doesn't promise to repay if its their fault. If they read it here s

  • WAP54G as Repeater. PC connected but no internet.

    router: WRT160N (v2) AP/Repeater: WAP54G (v3.1) firmware: updated First of all, I read that WAP54G is not listed to support WRT160n (didn't know up to this than purchased). Problem: I got the program to install my router and AP (now coach) as assumed

  • WebSphere - Thread Pool - SOAP Connector

    Is there a way to control the number of thread pool of SOAP connector rather than the use of the thread pool?