09-25-2007 07:59 AM
09-25-2007 09:53 AM
09-25-2007 12:30 PM
12-02-2008 07:12 AM - edited 12-02-2008 07:13 AM
Hello all,
sorry for continuing this "partially off-topic" thread, but I'm encountering a problem on this subject...
Why on earth the "boolean array to digital waveform" needs a 2D array as input? I have a 1D boolean array (example: 1100100000000111), and I need to convert it to a digital waveform in order to use it as input on a DAQmx driver.
Thanks a lot!
12-03-2008 02:02 PM - edited 12-03-2008 02:03 PM
Hi xdaf,
The reason why this VI takes in a 2D array is because this is often used to create digital waveforms with multiple channels and therefore, every row would correspond to data for each channel. To go around this problem, you may simply increase the dimension of your 1D array to a 2D array by feeding it in a Build Array function. Note that although you are increasing it's dimension, you are not adding any new data.
I hope this answers your question.
12-04-2008 02:43 AM