passing structure from matlab workspace to embedded matlab function block

4 Ansichten (letzte 30 Tage)
Hi,
How can i pass a structure that is defined in matlab workspace to simulink embedded matlab function block. e.g :
Numbers.a=1;
Numbers.b=2;
These are defined in matlab ws. Then by using the input port in simulink, can i pass this to matlab emb function block in simulink, or any other way?
Thanks four your replies...
  1 Kommentar
Kaustubha Govind
Kaustubha Govind am 19 Nov. 2012
Kyle: I would recommend posting your answer under the Answers section instead of as a comment on the question. Thanks! :)

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Kaustubha Govind
Kaustubha Govind am 16 Mai 2012
You will need to define a Simulink.Bus signal to import the structure into Simulink as a nonvirtual bus - see Importing Structures of MATLAB timeseries Objects for Bus Signals to a Root-Level Input Port. Also refer to Working with Structures and Bus Signals in the MATLAB Function block documentation.
  3 Kommentare
Kaustubha Govind
Kaustubha Govind am 17 Mai 2012
The Simulink.Bus object is used to specify the datatype of the signal (you can configure this as the output type of the Inport block and the input type of the MATLAB Function blok). To actually import your data via the Inport block, please refer to the first link in my answer. You will need to create a structure of timeseries objects.
Akshaya Srinivasan
Akshaya Srinivasan am 13 Jul. 2018
Hi Both links don't work anymore. I am trying to do the same thing.

Melden Sie sich an, um zu kommentieren.


Kyle Andringa
Kyle Andringa am 28 Nov. 2012
Yes, this can be done. As you mentioned, go into the EditData (Ports and Data Manager) page of the embedded Matlab file. Define a variable and choose Input as the Scope. Then on the outside of the embedded Matlab file assign the input to a Constant block. Within the Constant block, assign the structure (Numbers). On the signal attributes of the constant block, you must assign the output to a Bus signal which matches the structure (Numbers). This process is compatible with Rapid Accelerator.
Alternatively, you could choose the Scope as Parameter instead of Input. In this case you just name the Parameter "Numbers". This method is not compatible with Rapid Accelerator.
In both cases, you can only go one layer deep within the structure at a time. However, you can dig deeper in multiple steps. Example:
It doesn't like: new_var = Numbers.A.a But you could do: A = Numbers.A; a = A.a;
I'm not sure the reasoning for all of these nuances, I just know these items from (painful) experience.
Good Luck.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by