Afficher commentaires plus anciens
clarify the fir1 code plzz?? and how to design filter
i designed the cheby fiter but i cant design the fir1 filter
function filtered_sig = cheby_filter(no,c,w,x,R)
w2 = c+(w/2);
w1 = c-(w/2);
W = [w1 w2];
[b,a] = cheby1(no,R,W);
filtered_sig = filtfilt(b,a,x');
filtered_sig = filtered_sig';
i need to design it in this way..
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur FIR Filter Design dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!