How to run Simulink model in a loop with continuously changing one input parameter?
Ältere Kommentare anzeigen
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).
Antworten (3)
Sulaymon Eshkabilov
am 10 Apr. 2019
2 Stimmen
% 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
am 15 Jun. 2016
Bearbeitet: Avinash Prakash
am 15 Jun. 2016
1 Kommentar
Amardeep Mishra
am 23 Okt. 2018
How to force the for loop to continue even when sim() returns NaN or infinity?
Andreas Goser
am 14 Jun. 2016
0 Stimmen
Most users run this through a MATLAB script and the SIM command. You can also leverage commands like SET_PARAM.
1 Kommentar
Avinash Prakash
am 14 Jun. 2016
Kategorien
Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!