LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

how to store data

Our problem is the following !
We are working with a Fluke 45 multimeter, and we would like to put the data that we measure into a table !
So, we first have to read the data, with a read diagram ( VI's ) !
And then put the data in a table, one by one, so when all the measurement are taken, they are all in a table,
So that we can look at them later.
How do we do this ?
Does anybody has some diagram's (VI's ) for this read, and how
do we put these measurements in a table, under each other ?
Thanks in advance !!
0 Kudos
Message 1 of 3
(2,236 Views)
1)Create path to file you want save data there.
2)After you get data, convert it to decimal string (look vi in String/String Number Conversion). Add to result string the "carriage" symbol (look String).
3) Use "Write Characters To File" vi in File I/O.
Make this with all data.
0 Kudos
Message 2 of 3
(2,236 Views)
Check out the examples that come with LabVIEW, they are full of plenty of examples of how to do data acquisition and save to disk. Be sure to look at data acquisition VI examples.

What you are looking for is an array, not a table. A table is simply a method of displaying an array, usually indexed with certain items such as times, etc. This data is stored in an array. Think about using arrays to store your data. The examples will point you in the right direction.
0 Kudos
Message 3 of 3
(2,236 Views)