Simulink While Loop - recording iteration-by-iteration parameters

조회 수: 4 (최근 30일)
Al
Al 2018년 10월 3일
댓글: Al 2018년 10월 4일
Per the title I am trying to record the evolution of parameters over While loop iterations by writing to a signal or workspace variable for later processing. It is clear that only the final states are available outside the While executed susbsystem.
My approach so far is to try and write some n-length vector of parameters vs iteration number as part of the While iteration. This vector would then be available when the While exits - recording the history.
The issue appears to be that in Simulink the signal widths/sizes need to be known at compile time, however I have no a priori knowledge of how many While iterations will run. This seems to be a fundamental problem that means I can't use the Assignment block, and I can't write a custom MATLAB function that outputs a signal (which could then be passed to the workspace)
It strikes me that if I could write directly to the workspace from inside a MATLAB fcn block I might circumvent the fixed widths of Simulink signals.
Perhaps somebody knows a way to do this?
Or perhaps my whole approach is wrong?
Thanks in advance for any pointers

답변 (1개)

Preethi
Preethi 2018년 10월 4일
hi,
Have you tried using assignin() function?
  댓글 수: 1
Al
Al 2018년 10월 4일
Hi Preethi
Thanks for the suggestion. I'm just testing within simulink at the moment. It throws the following error:
Function 'assignin' is not supported for code generation. Consider adding coder.extrinsic('assignin') at the top of the function to bypass code generation.
This is ultimately going to be for an embedded application so I need a solution compatible with code generation.
At any rate matlab seems really unhappy about any dynamic growing or creation of variables from a MATLAB fcn in the simulink environment. Even if I add the recommended coder.extrinsic line I still cannot append values to a vector.
It should be possible though, as "tout" definitely grows...
Thanks

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

카테고리

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

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by