Borrar filtros
Borrar filtros

Changing the size of an array in a referenced masked model

5 visualizaciones (últimos 30 días)
Alexander Lazo
Alexander Lazo el 22 de Feb. de 2024
Editada: Pramil el 27 de Mzo. de 2024
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).

Respuestas (1)

Pramil
Pramil el 27 de Mzo. de 2024
Editada: Pramil el 27 de Mzo. de 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:
  1. Open a “Blank Subsystem”.
  2. Add all the necessary blocks and make the required connections.
  3. Right click and select Mask -> Create System Mask.
  4. Create the mask by defining your parameters.
  5. Now open your “MainModel” and add a “Subsystem Reference” block and reference your masked subsystem.
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.

Categorías

Más información sobre Author Block Masks en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by