How can I increase the number of Fourier frequencies by adding 500 zeros to the end of the 27-sample-long signal ??

2 visualizaciones (últimos 30 días)
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.

Respuestas (2)

Matt J
Matt J el 24 de Oct. de 2021
L = length(t)+500;
fftx1=fft(x1, L)

Image Analyst
Image Analyst el 24 de Oct. de 2021

Categorías

Más información sobre Fourier Analysis and Filtering en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by