필터 지우기
필터 지우기

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