How Can I Plot a Normalized Frequency-Amplitude diagram? (using Butterworth Filter)

2 views (last 30 days)
Hi, I want to implement a Butterworth filter on a sequence, and I know Filter's properties like Order Cut-off Frequency. I want to see amplitude - Normallised frequency in Output diagram, but i don't know, how can i write it in below code?
one of my problem about filters structure : how can I execute a butterworth filter with 10 order, on a sequence with more than 10 length like 26 another main problem is about ploting function? i thought that i can use "fvtool" instruction but i didn't see any tools to plot Normalized Frequency-Amplitude diagram
[b,a]=butter(10,0.3607);
temp = [5058001 24.68 13961.64 56469.87 9863.49 722.16 1119.84 6673.36 5911.46 5771.05 211.01 12.03 0.22 505.81 24.68 13.96 567 9863.49 722.16 119.84 663.36 5911.46 571.05 211.01 11 113.22];
z=filter(b,a,temp);
plot?

Answers (0)

Community Treasure Hunt

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

Start Hunting!