04-12-2013 07:37 AM
Dear All
I have 2D double array of data values. I need it as a waveform with time values attached. Any suggestions?
Best regards,
Aksoy
04-12-2013 07:40 AM
04-12-2013 07:44 AM
Because of the title
Best regards,
04-12-2013 07:56 AM
04-12-2013 09:31 AM
Well, this is definitely a case-in-point for how to not use the forums. Use PM's for stuff like this, please.
Back to the question: To get a 2-D array into a waveform, you will need to use a 1-D Array of Waveforms. Here's what this means:
Each waveform has an array inside of it. To play nicely with a 2-D array, you should parse the array row- or column-wise and stick each row/column into a single waveform - then create an array of waveforms. This will encapsulate all of your data. How is the time stamp integrated into the current data set?