Handling Struct and String Arrays in Simulink.

조회 수: 7 (최근 30일)
Ajpaezm
Ajpaezm 2018년 12월 20일
댓글: Walter Roberson 2024년 7월 23일
Hey guys,
I have a function that has 3 types of outputs:
1) numeric array.
2) string array.
3) struct array.
Is there any possible way in which I can call this function from Simulink and use data from these 3 outputs? Do you have any examples of it? I'd like to know.
Thanks for your time!
Aquiles

채택된 답변

Walter Roberson
Walter Roberson 2018년 12월 20일
There is no way to create a Simulink signal that is a character vector or a string array or a struct array (except for a timeseries.)
Therefore to use that function inside Simulink, you would need to create a MATLAB Function Block that brought in the inputs from non-signal sources as necessary, and then called your function, and disposed of the results in non-signal ways.
The only alternative to this is that you could encode the string array or struct array as numeric signals and pass those around, and then decode them inside a MATLAB Function Block and then call your function and encode the results as numeric signals. For example you could use the fast serialization contribution from the File Exchange. Remember, though, that if you try to do this in continuous time instead of discrete time, that your signals are likely to be interpolated...
  댓글 수: 2
Robert
Robert 2024년 7월 23일
why
Walter Roberson
Walter Roberson 2024년 7월 23일
In the time since the previous post, String signals were added; https://www.mathworks.com/help/simulink/ug/simulink-strings.html
struct signals are handled by creating Bus Objects; https://www.mathworks.com/help/simulink/slref/simulink.bus.html . These are not compatible with regular struct objects.
why
Because the not very tall and not excessively bald programmer asked the very bald system manager.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by