Matlab filter into simulink filter

조회 수: 1 (최근 30일)
Marek Andrzej
Marek Andrzej 2016년 10월 18일
댓글: Marek Andrzej 2016년 10월 19일
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?

채택된 답변

Honglei Chen
Honglei Chen 2016년 10월 19일
You can consider using
realizemdl(d_LPF)
and then pass the signal through the generated filter. The doc can be found at
HTH
  댓글 수: 1
Marek Andrzej
Marek Andrzej 2016년 10월 19일
Thank you very much! Super useful tool btw

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Filter Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by