Borrar filtros
Borrar filtros

Level 2 S Function

1 visualización (últimos 30 días)
Pramod Kumar
Pramod Kumar el 11 de Mayo de 2011
How to set the size of the output ports in level 2 S function to dynamic size.. ??
  1 comentario
MarkB
MarkB el 7 de Jun. de 2011
Just to make sure, would you please clarify whether you mean "dynamic" or "variable size"? The two sound quite similar, but aren't the same:
Dynamic: the port can accept a variety of possible port dimensions, but whatever dimensions are accepted are finalized and constant for the rest of the simulation.
Variable sized: These have a worst-case dimension specified, either hard-coded, or resolved in the same way as dynamic dimensions above, but during simulation,it is possible that only a subset of the worst-case dimension is used.

Iniciar sesión para comentar.

Respuestas (2)

Walter Roberson
Walter Roberson el 11 de Mayo de 2011
Possibly this earlier Question provides the answer?

Kaustubha Govind
Kaustubha Govind el 11 de Mayo de 2011
Have you tried using:
block.SetPreCompOutPortInfoToDynamic;
In your setup function? I think that should do it.
Otherwise, as suggested in the documentation:
"... assign a value of -1 to the dimensions. In this case, you can implement the SetInputPortDimensions method to set the dimensions during signal propagation."
You can extend this information to the output port and set dimensions to -1 in the setup and implement SetOutputPortDimensions.
  2 comentarios
Pramod Kumar
Pramod Kumar el 18 de Mayo de 2011
I have tried to make use of the command above, but its still not able to define the size of the vector output as dynamic :(
Kaustubha Govind
Kaustubha Govind el 18 de Mayo de 2011
Have you tried the second technique of setting the output port dimensions to -1 and implementing SetOutputPortDimensions?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by