How to update values ​​in Simulink

I am creating a simulation with Simulink. I originally wrote the code in MATLAB script, but it is necessary to block it, and it is blocked mainly using MATLAB function. I want to use the value calculated in the previous loop in the next loop. How should I do that? Here is a simple block. Specifically, a wants to take a value from "initial_value" in the first loop, but wants to update the value from "calculate" in the subsequent steps.

답변 (2개)

Fangjun Jiang
Fangjun Jiang 2019년 12월 18일

0 개 추천

All you need is to declare "a" as a persistent variable.
doc persistent

댓글 수: 1

Sorry, I forgot to post the photo. I want to use "a" output by "calculate" in the next loop as shown in this photo. When written in code, it looks like this:無題111.png
a = 0;
a0 = 0.1;
while(1)
a = a + a0;
end

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

Mark McBroom
Mark McBroom 2019년 12월 29일

0 개 추천

It would be easier to do this with basic simulink blocks. See attached screen shot. Unit delay block by default has initial value of a=0 but can be set to non-zero vaue.

카테고리

도움말 센터File Exchange에서 General Applications에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2019년 12월 18일

답변:

2019년 12월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by