Magnitude response of Chebsev filter for Type1

2 views (last 30 days)
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
Wayne King
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.

Sign in to comment.

Answers (1)

Wayne King
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})

Community Treasure Hunt

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

Start Hunting!