05-05-2014 02:46 AM
Hello,
I have 2 waveforms and I’m trying to add one after another, (like an analogy of concatenation of characters).
I was thinking to make a time offset of one waveform and then add them, but it didn’t work well.
I would appreciate some ideas.
Thanks
I annex a picture of my VI
Solved! Go to Solution.
05-05-2014 03:30 PM
The waveform data type is basically just a cluster of 3 pieces of data: 1. the actually data array (Y), 2. the time interval between the points (dt) and 3. the timestamp (t0) that was generated at the begining of the acquisition. The build array function won't let you concatenate the waveforms because it doesn't know if it should use the timestamp from the first waveform or the timestamp from the second. You will need to break each waveform down to its components, concatenate the data arrays, and insert this data into a new waveform with the desired timestamp that you want to use. It should look something like this:
Jeremy P.
05-05-2014 03:55 PM