about High pass and low pass filter
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how to design high pass IIR filter and low pass Fir signal using window method(using conv) to remove one of signal from sine wave of 50hz and 10hz
0 Kommentare
Antworten (1)
Youssef Khmou
am 25 Dez. 2014
The syntax for designing low pass filters is :
b = fir1(n,Wn,'ftype',window);
n is the number of coefficients, Wn is the cut-off frequency ( 0<=Wn<=1), 'ftype', 'ftype' accepts parameters 'high','stop','DC-1' and 'DC-0'. If the 'windows' parameter is not specified , then Hamming windows is the default option.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Filter Design finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!