12-26-2018 09:55 AM
I am using the Read Pulse Duty Cycle and Frequency (Continuous) example VI. The data output from DAQmx read contains both duty cycle and frequency information. I would like to separate the two, so each are their own array. I've tried unbundle, index array, split signals, pretty much anything I could think of that may allow it to split, and nothing has worked so far. I only care about the duty cycle information, want the duty cycle for each period over an entire revolution.
Solved! Go to Solution.
12-26-2018 10:33 AM
You have to unbundle inside a for loop. auto index the input and both outputs. There is no reciprocal Index and Bundle function
12-26-2018 10:51 AM
Thanks that worked. I was auto indexing out of the while loop, and was getting a broken line with unbundle. Using a for loop worked.