03-06-2018 02:10 PM
Hello all. This is my first forum post! As a newcomer to LabVIEW, I'm really impressed by its functionality.
I'd like assistance with teh following apparatus I'm using:
The problem is: how can I take the array accumulated to produce the (correct) waveform graph to a csv file?
I want this format csv file:
Time,Voltage1,Volatge2,Voltage3,Voltage3,Voltage4
06/03/2018 17:50....,2.089,2.3,3.435,1.5898
...... etc etc
BUT I only get:
Time,Voltage1,
06/03/2018 17:50,2.435
06/03/2018 17:51,2.222
........etc.........
I have tried with the waveform datatype, but can only get this to work for a single voltage channel. I've atatced screenshots of the block diagrams to assist. Many thanks in advance.csv saving attempt
03-06-2018 02:17 PM - edited 03-06-2018 02:18 PM
03-06-2018 02:42 PM
You should create 4 waveforms instead! (Create an array of waveforms.)
Thanks a that. Please elaborate on the array part: do I then createna single array from these 4 waveforms?
03-06-2018 03:05 PM
03-07-2018 05:03 PM - edited 03-07-2018 05:04 PM
Don't write the waveform data directly to a file.
Build an array with X,Y1,Y2,Y3,Y4 as the columns and use "Write Delimited Spreadsheet.vi" to write the array to a file.