Simulink repeated operations (for loop)

4 visualizaciones (últimos 30 días)
Marco Asperti
Marco Asperti el 7 de Nov. de 2020
Comentada: Marco Asperti el 7 de Nov. de 2020
Hi everyone,
I would like to implement in Simulink (at each time step) the following operation to orthonormalize a matrix A with an iterative method.
Starting from matrix A (3x3, computed inside the model), I would like to perform the following operation in a subsystem block:
for i = 1:5
A = 3/2*A-1/2*A*transpose(A)*A
end
I perfectly know how to perform the various operations (sums, products and transpose), but I don't know how to implement this for loop. What I want is a subsystem which takes as an input A, and gives as an output A orthonormalized iteratively by applying the formula above.

Respuestas (1)

Mark McBroom
Mark McBroom el 7 de Nov. de 2020
create a subsystem and use simulink blocks to create your equation inside the subsystem. The subsystem will have one input and one output. OUtside of the subsystem, connect theoutput of the subsystem to the input, with a unit delay to break the loop. Then, put this whole thing inside a for-each subsystem.
  1 comentario
Marco Asperti
Marco Asperti el 7 de Nov. de 2020
But what if I have matrix A (input) computed at each time step of integration in a larger system, and I want to repeat this procedure at each time step? How do I set the initial condition in the Unit Delay, to use the current A as initial value in the for loop at each time step?

Iniciar sesión para comentar.

Categorías

Más información sobre Subsystems en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by