how to save frames of data into one struct?
Mostrar comentarios más antiguos
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);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Descriptive Statistics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!