Matlab filter into simulink filter

1 Ansicht (letzte 30 Tage)
Marek Andrzej
Marek Andrzej am 18 Okt. 2016
Kommentiert: Marek Andrzej am 19 Okt. 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?

Akzeptierte Antwort

Honglei Chen
Honglei Chen am 19 Okt. 2016
You can consider using
realizemdl(d_LPF)
and then pass the signal through the generated filter. The doc can be found at
HTH
  1 Kommentar
Marek Andrzej
Marek Andrzej am 19 Okt. 2016
Thank you very much! Super useful tool btw

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by