Magnitude response of Chebsev filter for Type1
2 views (last 30 days)
Show older comments
sir,
i want to plot the magnitude response of chebsev filter for Type 1 for order 2,3,4 in a single plot for analysis purpose
Thanking you,
suresh s
2 Comments
Honglei Chen
on 30 Jul 2012
What's the difference between this question and the question I answered before?
Wayne King
on 30 Jul 2012
Edited: Wayne King
on 30 Jul 2012
Honglei has a very good point. You should go back and accept Honglei's original answer.
Answers (1)
Wayne King
on 30 Jul 2012
You have not given us your desired peak-to-peak ripple or passband edge frequency or sampling frequency, but the general idea is something like this:
for orders = 2:4
[B{orders-1},A{orders-1}] = cheby1(orders,0.5,0.25);
end
fvtool(B{1},A{1},B{2},A{2},B{3},A{3})
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!