Magnitude response of Chebsev filter for Type1
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
Honglei Chen
2012-7-30
What's the difference between this question and the question I answered before?
Wayne King
2012-7-30
编辑:Wayne King
2012-7-30
Honglei has a very good point. You should go back and accept Honglei's original answer.
回答(1 个)
Wayne King
2012-7-30
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!