Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

i need to use ifft on this (help plz im desperate)

1 visualización (últimos 30 días)
zayaz aya
zayaz aya el 3 de Abr. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Fs = 1000;
T = 1/Fs;
t = (0:L-1)*T;
y1=110*sin(2*pi*50*t);
y2=10*sin(2*pi*250*t);
z=y1+y2;
f = Fs*(0:(L/2))/L;
z=abs(fft(z));
grid
plot(z)
figure(1);
semilogx(f,z(1:numel(f)))
d = designfilt('bandstopiir','FilterOrder',2, ...
'HalfPowerFrequency1',49,'HalfPowerFrequency2',51, ...
'DesignMethod','butter','SampleRate',Fs);
fvtool(d,'Fs',Fs)
  4 comentarios
Adam
Adam el 3 de Abr. de 2018
Editada: Adam el 3 de Abr. de 2018
So what is wrong exactly with using
doc ifft
just like you used fft?
zayaz aya
zayaz aya el 3 de Abr. de 2018
the thing is i dont know what im doing i tried ifft and its not working ifft should make everything back to where it was i think

Respuestas (0)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by