How to check a filter
7 次查看(过去 30 天)
显示 更早的评论
i created a filter using FDATOOL. now i want to check it. i did : generate matlab code. got a mutlab function with the filter specification. ran the function and got a matlab object Hd. this is ment to be a HPF: samling at 20MHz Fstop 10KhZ Fpass 500KHz
i want to run this filter with a signal and see resault. thought about entering a sine function: not sure that its the right way, i coded:
Fs=20e6;
dt=1/Fs;
stopt=0.25;
t=(0:dt:stopt-dt)';
Fc=10e3;
x=sine(2*pi*Fc*t);
y=filter(Hd,x);
i expect not to see anything when setting the sine Fc below 10Khz but thats not the case now i am not sure i am doing things correct. would like to get some help
0 个评论
回答(1 个)
Star Strider
2016-5-26
If you want to view the transfer function, use the freqz function.
See the documentation on it for all the options it provides.
2 个评论
Star Strider
2016-5-26
Use the filtfilt function, not filter. The first creates a phase-neutral (maximally flat phase response), and the other introduces phase distortion.
If your sin signal is near the filter cutoff frequency or in the transition region, it could be distorted even if you use filtfilt. That is likely since your filter has a very large transition region, going from 10 kHz to 500 kHz.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!