필터 지우기
필터 지우기

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

조회 수: 37 (최근 30일)
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일
% 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

Andreas Goser
Andreas Goser 2016년 6월 14일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Simulink Environment Customization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by