'Decimation' Error in Simulink
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
di liu
am 12 Okt. 2020
Kommentiert: di liu
am 15 Okt. 2020
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 Kommentare
Mathieu NOE
am 12 Okt. 2020
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
Akzeptierte Antwort
Fangjun Jiang
am 12 Okt. 2020
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 Kommentare
Fangjun Jiang
am 15 Okt. 2020
Bearbeitet: Fangjun Jiang
am 15 Okt. 2020
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')
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!