I have to increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal.

1 次查看(过去 30 天)
fs = 250;
t = 0:1/fs:0.107;
L = length(t);
x1 = sin(2*pi*50*t)+0.3;
fftx1=fft(x1)
freqHz = (0:1:length(x1)-1)*fs/L;
plot(freqHz,fftx1,'-o')
I have to increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal.

回答(1 个)

Image Analyst
Image Analyst 2021-10-24
This is a duplicate question. I answered it here:
where I said to just assign the 527'th element to zero.
x1(527) - 0;

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by