12-19-2024 12:02 PM
This is a question from the CLAD Preparation Guide using LabVIEW 2017, the answer at the end of the PDF says C but I believe it is B. Can someone double check this?
Solved! Go to Solution.
12-20-2024 12:20 AM
First make sure that you realize that the letter is below the image.
The input is an array of waveforms, one for each channel.
C is correct. It outputs only the waveforms where at least one element is >4.
B is glaringly wrong! It creates a gigantic mess because the inner loop only retains values that are >4 then it creates a 2D array in the outer loop and all rows are padded with zeroes to the longest inner loop output.
12-20-2024 08:08 AM
I didn't know that the array of waveforms was one for each channel. I thought that each waveform had all the channels in it with a single sample. That clears things up, thank you!