Filter löschen
Filter löschen

Structure in simulink and Embedded MATLAB Function

2 Ansichten (letzte 30 Tage)
Julio
Julio am 9 Mär. 2012
Hi everyone.
I'm trying prove a example of Mathworks about structure in Simulink , You can find It in the help of Matlab "Example of Structures in an Embedded MATLAB Function Block".
I do this exercise how you can look at the picture bellow( click on link bellow)
In that case , it work , but when I change "a2" with a matrix for example [2 3;4 6] and I changed the code too, look at the picture (click on link bellow)
in that case it doesn't work , appears a error window :
I hope You can help me

Akzeptierte Antwort

Kaustubha Govind
Kaustubha Govind am 9 Mär. 2012
Are you working with the demo model named 'emldemo_bus_struct'? If yes, what version are you using? I'm asking because in R2011b, it appears that the model already uses a 2x2 matrix for that last element of the bus. In any case, it seems like you may not have updated the Simulink.Bus in the base workspace to also use a 2x2 matrix. You need to look at the "Output Data Type" setting in the dialog of the Bus Selector that the bottom two Constant blocks are connected to. You will see a Simulink.Bus object with the same object. If it's called SubBus:
>> busEls = SubBus.Elements;
>> busEls(2)
ans =
Simulink.BusElement
Name: 'a2'
Complexity: 'real'
Dimensions: [2 2]
DataType: 'int8'
Min: []
Max: []
DimensionsMode: 'Fixed'
SamplingMode: 'Sample based'
SampleTime: -1
See that the "Dimensions" field says "[2 2]".

Weitere Antworten (1)

Julio
Julio am 9 Mär. 2012
Thank you for answer me ... I didn't use the demo , simply I created a new model (a copy) , you are right the problem is the dimension field , I dont knowed it , I though that it was automatic ... Now it work very good, thank you very much :).
  2 Kommentare
Kaustubha Govind
Kaustubha Govind am 12 Mär. 2012
Julio: Could you please accept my answer if your question is resolved? Thanks!
Julio
Julio am 28 Mär. 2012
Sorry , I forgot It.
Thank again .

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by