I want to get an external analog signal via arduino and then perform its FFT. Kindly Help

3 次查看(过去 30 天)
I got the signal vector of my analog data via arduino but I couldnt determine the time length of signal thus the FFT couldnt be performed. The X-axis of FFT should be in Hertz.
a=arduino('com10','Mega2560')
v=zeros(1000,1);
t=seconds(v);
t0=datetime('now');
for ii=1:1000
v(ii)=readVoltage(a,'A0');
t(ii)=datetime('now')-t0;
end
Y=fft(v);

回答(1 个)

Githin John
Githin John 2020-2-7

类别

Help CenterFile Exchange 中查找有关 Spectral Measurements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by