[討論] 關於FFT轉換加頻率的問題

作者: heizesun (RedSun)   2019-08-13 14:20:09
小妹剛進研究所
以前都未學習過matlab
想請問各位高手
在做FFT轉換時
如何加入頻率
我想做60MHz
之前已經有在y裡面乘過60M
但未成功
還請各位高手指導
附上程式碼
Fs = 1000;
t = -1:1/Fs:1;
y = 2*cos(2*pi*t);
% Plot time domain
subplot(2,1,1);
plot(t, y, '.-');
title('time domain');
xlabel('Time');
ylabel('Amplitude');
axis tight
% Plot Frequency domain
subplot(2,1,2);
Y = fft(y);
stem(abs(Y) );
fftshift(stem(abs(Y)))
plot(t,Y,'.-'); grid on
xlabel('Frequency');
ylabel(' Amplitude ');
title(' Fourier transform in Frequency domain ')
作者: mp19990920 (郝渴連)   2019-08-13 17:42:00
y = 2*cos(2*pi*Fs*t);

Links booklink

Contact Us: admin [ a t ] ucptt.com