![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176213/image.png)
converting matlab code into simulink
1 回表示 (過去 30 日間)
古いコメントを表示
how to use the final conditions of filters as initial conditions in discrete FIR filter in simulink?
I make blocks and then take lpc coeffiecient so I will have different initial condition each time, how can I put them in simulink, I implement it on command window and it works correctly but in simulink there is a problem with continuity, can somebody help, plz?
0 件のコメント
回答 (1 件)
Jon Boerner
2014 年 10 月 20 日
In the mask for the Discrete FIR Filter in Simulink, there is an option to specify the initial states:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/176213/image.png)
You can use this option to set the initial states to start at nonzero values. Is this what you are looking for?
4 件のコメント
Jon Boerner
2014 年 10 月 21 日
For the Discrete FIR Filter block I had used, you can use:
>> set_param(gcb, 'InitialStates', ['xFinal0'])
Note that InitialStates is plural, and that the LoadInitialState parameter does not need to be set.
Also, it is worth noting that for the analogous IIR block, you can have the states as an input to the block, as well as an input to reset the block to new initial states:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/178952/image.png)
参考
カテゴリ
Help Center および File Exchange で Multirate and Multistage Filters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!