フィルターのクリア

'Decimation' Error in Simulink

13 ビュー (過去 30 日間)
di liu
di liu 2020 年 10 月 12 日
コメント済み: di liu 2020 年 10 月 15 日
Hi all,
I hope you are well. When I run my Simulink model, I met the issue 'The 'Decimation' option must be a positive integer'. Does anyone know why it occurs?
Thank you for your help.
Di
  2 件のコメント
Mathieu NOE
Mathieu NOE 2020 年 10 月 12 日
well, you can resample with non integer values in matlab, but that is not doable in causal systems.
In simulink, decimation must always be performed with an integer decimation factor
look at the help
di liu
di liu 2020 年 10 月 15 日
Hi Mathieu,
Thank you for your answer. The main issue is in Simulink, it does not tell me which block causes the error.

サインインしてコメントする。

採用された回答

Fangjun Jiang
Fangjun Jiang 2020 年 10 月 12 日
Follow the link of the error message to find the involved block. You must have provied an incorrect number for the "Decimation" parameter, which is a factor, n, which writes data at every nth time that the block executes. It's value must be a positive integer.
  3 件のコメント
Fangjun Jiang
Fangjun Jiang 2020 年 10 月 15 日
編集済み: Fangjun Jiang 2020 年 10 月 15 日
It is weird it didn't tell the violating block.
Best way is to attach the model. If not, run the following code. 'f14' is a built-in example model. Observe the value and hopefully find the problematic block.
%%
f14;
blocks=find_system('f14','FollowLinks','On','LookUnderMasks','All','RegExp','On','Decimation','\w')
decimation=get_param(blocks,'Decimation')
di liu
di liu 2020 年 10 月 15 日
Hi Fangjun,
Thank you for your help. I have found the issue, it is caused by the 'clock' block.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeString についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by