how to save frames of data into one struct?
Show older comments
I have the following code to read one frame data--> n points-->find 10 peaks(from n points). say I want to read 10000 frames of data, then save all the (1000*10)peaks into a struct. how do I modify the code?
a=arduino
n=20;
for ii=1:n
v(ii)=readVoltage(a,'A0');
end
[pks,loc]=findpeaks(real(fft(v)),'npeaks',10);
Accepted Answer
More Answers (0)
Categories
Find more on Descriptive Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!