butterworth low pass filter

This is the firt time to learn program in matlab. And now I get a problem . I want to design a IIR butterworth low pass filter, order 10 and cutoff frequency pi/2. How should I start the problem or what kind of function shoud I use .
Can anyone give me some suggestions ? Thanks very much!

 Accepted Answer

Have you read the reference page for butter.m?
[B,A] = butter(10,1/2);
% Visualize filter
fvtool(B,A)

3 Comments

not yet .. where is it? could you please give me the link? thanks for your advice .
>>doc butter
http://www.mathworks.com/help/toolbox/signal/ref/butter.html

Sign in to comment.

More Answers (1)

Asked:

on 13 Jun 2012

Answered:

on 4 Dec 2024

Community Treasure Hunt

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

Start Hunting!