How to run Simulink model in a loop with continuously changing one input parameter?

I have built a Simulink model and it's inputs are given from scripts. Say suppose my input is "x" and output is "y", I have to simulate the model for different input values (x) and get corresponding outputs (y).

回答 (3 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2019 年 4 月 10 日

2 投票

% Simulink won't run if the result comes to inf or NaN.
% A bit more complete answer of this problem:
y = cell(zeros(1,5));
for ii=1:5
OUT = sim('simulink_model.slx');
y{ii} = OUT;
end
Avinash Prakash
Avinash Prakash 2016 年 6 月 15 日
編集済み: Avinash Prakash 2016 年 6 月 15 日
Figured it out myself :)
y = zeros(1,5);
for i=1:5
sim('simulink_model')
y(i) = output_from_Model;
end

1 件のコメント

Amardeep Mishra
Amardeep Mishra 2018 年 10 月 23 日
How to force the for loop to continue even when sim() returns NaN or infinity?

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

Andreas Goser
Andreas Goser 2016 年 6 月 14 日

0 投票

Most users run this through a MATLAB script and the SIM command. You can also leverage commands like SET_PARAM.

1 件のコメント

Avinash Prakash
Avinash Prakash 2016 年 6 月 14 日
Hello Andreas,
Can you please give me an example of the MATLAB script?
Thank you so much.
- Avinash

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

カテゴリ

ヘルプ センター および File ExchangeSimulink についてさらに検索

質問済み:

2016 年 6 月 14 日

回答済み:

2019 年 4 月 10 日

Community Treasure Hunt

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

Start Hunting!

Translated by