Cumulative variable or += in Simulink

조회 수: 7 (최근 30일)
Mohammed Hakim
Mohammed Hakim 2020년 5월 8일
댓글: Mohammed Hakim 2020년 5월 9일
How can I do the x += 1 or x += y in Simulink?
Im not allowed to use a s-Function or M in my Project.
the cumulative sum didn`t help me.
  댓글 수: 2
James Tursa
James Tursa 2020년 5월 9일
We need more details of what you are working with. x += 1 is simply x = x + 1, and x +=y is simply x = x + y. So what are you trying to do specifically?
Mohammed Hakim
Mohammed Hakim 2020년 5월 9일
Thank you for your attention. I know everything you explained to me.
What I am doing is translating a C ++ code to simulink and I am not allowed to use an s function. what i can't do is a cumulative variable for example (x), which increases by (y) for each round of the program and is tested in an if loop.
if ((x + = y)> 2) then do this and that

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by