- Open a “Blank Subsystem”.
- Add all the necessary blocks and make the required connections.
- Right click and select Mask -> Create System Mask.
- Create the mask by defining your parameters.
- Now open your “MainModel” and add a “Subsystem Reference” block and reference your masked subsystem.
Changing the size of an array in a referenced masked model
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I have created a referenced masked model as described in:
The example only covers parameters with dimensions [1 1] but it can also be applied to other dimensions. My problem is, whenever the matlab variable is created and set as an argument in the model workspace the dimensions of the default value also get stored. Whenever insert my model reference in a specific context and try to set a parameter with a different dimension to the default value, I get the following error:
Invalid setting in mainModel/myRefModel for parameter x
caused by: invalid dimensions for parameter argument 'x' of model block 'mainModel/myRefModel'. The parameter provided is a [1x41] array but a [1x2] array is expected.
Unfortunately, for my application, I need the lenght of my array to be variable (it will change from mainModel to mainModel).
0 Kommentare
Antworten (1)
Pramil
am 27 Mär. 2024
Bearbeitet: Pramil
am 27 Mär. 2024
As of MATLAB R2023b there is no possible way to pass value into a parameter of a masked model with dimensions other than the one set initially.
Now, there is a work-around, you can create masked subsystems instead of masked models as they are more flexible with respect to parameter dimensions.
You can follow these steps to create one:
This will allow you to pass values with desired dimensions.
I have attached an example model that works for MATLAB R2022b that you can refer.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Author Block Masks finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!