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);
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Arduino Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!