LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

data one by one

Hello, first of all sorry for my english. I'm trying to get all samples of a signal. I have this values in an array (collected Y data), but i need to see it one by one. I put my file below. Can you help to me?
Thank you very much.
Luz
0 Kudos
Message 1 of 14
(3,982 Views)

First of all, your array index is set at 150 (in the front panel), that means your array will start displaying at index 150.  To view the other data, drag your display box (in gray) larger, then right click on the display box'es (in gray) most outer border, and select Visible Items->Vertical Scrollbar.  Now you'll see you're way down in your array, either change the array index to 0, or use the scrollbar to go back up at the beginning of the array.  Either way will do the same thing.

If you need to extract the data one by one, you'll need a loop.  In sig5[1]2.vi, after all the data is collected, the VI will display the data one by one in "array data" like a slideshow (delay by 2 sec)

See-Ming

Message Edited by Elsa Fung on 03-08-2006 06:28 AM

Download All
0 Kudos
Message 2 of 14
(3,958 Views)

Why not save it to a file and read it one by one later by opening that file??

look at attached VI.

any doubts, do get back

regards

Dev

0 Kudos
Message 3 of 14
(3,951 Views)
0 Kudos
Message 4 of 14
(3,949 Views)
Hello, thank you very much but i have labview 7.0 and i can't read your files. Could you save its in 7.0 version?. Thank you very much
0 Kudos
Message 5 of 14
(3,942 Views)
 
Download All
0 Kudos
Message 6 of 14
(3,936 Views)
0 Kudos
Message 7 of 14
(3,933 Views)

Hello, it isn't exactly what I want, I want a number changing for each adquisition. Can you help me?

Thanks.

Luz

0 Kudos
Message 8 of 14
(3,923 Views)
you mean this?
0 Kudos
Message 9 of 14
(3,919 Views)
No, I want to see exactly all of values of the array data one by one. For example:
Data(0)_iteration1
Data(1)_iteration1
.
.
.
Data(5000)_iteration1
Data(0)_iteration2
Data(1)_iteration2
.
.
.
Data(5000)_iteration2
.
.
.
Data(0)_iterationN
Data(1)_iterationN
.
.
.
Data(5000)_iterationN
N is the number of times of the while loop until stop.
Can you hep me?, thank you very much
Luz
0 Kudos
Message 10 of 14
(3,910 Views)