LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

reposting the default results for problem vi

note:there is no results on the second graph but it is definitly reading something because auto scale jumps around in sink with scaled data vs time


"if you could look at the prog.s attached and if you can explain why i am unable to read the data output from "scalled data vs seconds" into tone measurments.
it must have something to do with the conversion from the cluster of 3 elements to the DBL waveform can anyone see the mistake in the conversion!!""
0 Kudos
Message 1 of 2
(2,409 Views)
Your data are transposed, that is your 2D array is a Nx1 matrix where you expect an 1xN matrix. There are two ways to solve that problem:

1 - you can transpose your 2D array using the "Transpose 2D Array" primitive located in the Array palette or ... a better solution

2 - You can extract the signal array as a column instead as a row (which it is by default). To do so connect a constant with value 0 to the lower terminal (index(col)) of the Index array primitive that feeds the data to your Build Waveform.
0 Kudos
Message 2 of 2
(2,409 Views)