Specifically, using refft on multi-channel data acquisition? Currently the method i know to use is:
a) Acquire multiple channels of data
b) process the data into 1d arrays, one for each channel
c) process the data with refft
The issue lies in the processing of data.. after processing the data into 1d arrays, while passing to refft, refft doesn't always process the array of data. It may process a few returned arrays but quickly returns a type mismatch.
To get around this, i set up a single channel acquisition and passed the scaleddata array (power of 2) to refft, and yes it works, but that's only for one channel.
I created more CWAI's and c
ascaded acquisition, processing, stop acquisition, move to next CWAI but it's way too slow for my needs. But it's the only way i could get multichannel data aquisition and processing with refft 😃
Anyway, thanks in advance.