Matlab filter into simulink filter
1 view (last 30 days)
Show older comments
Marek Andrzej
on 18 Oct 2016
Commented: Marek Andrzej
on 19 Oct 2016
I have a filter like this:
dd= fdesign.lowpass('Fp,Fst,Ap,Ast',2000/50e3,2500/50e3,1,25);
%designmethods(d);
d_LPF = design(dd,'butter');
%fvtool(d_LPF)
data_LPF=filter(d_LPF,data_hil_abs);
How do I obtain same thing in simulink?
0 Comments
Accepted Answer
Honglei Chen
on 19 Oct 2016
You can consider using
realizemdl(d_LPF)
and then pass the signal through the generated filter. The doc can be found at
HTH
More Answers (0)
See Also
Categories
Find more on Filter Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!