Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
i need to use ifft on this (help plz im desperate)
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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)
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!