recursively fill a matrix within function

function x = adjustment(varargin)
Adjust = varargin{1};
A = Adjust.A;
% computations ...
Before this function worked, the other function includes varargin struct created. What I need is how I can build A recursively during each run of adjustment? Such as;
AA(:,:,1)=A; % first run of adjustment
AA(:,:,2)=A % second run of adjustment
.
.
AA(:,:,n)=A % n run of adjustment

 Respuesta aceptada

Torsten
Torsten el 22 de Sept. de 2023
Movida: Torsten el 22 de Sept. de 2023

0 votos

Return "A" from function "adjustment" as output argument and fill "AA" in the calling program.

Más respuestas (0)

Categorías

Más información sobre Argument Definitions en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 22 de Sept. de 2023

Movida:

el 22 de Sept. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by