recursively fill a matrix within function

조회 수: 2 (최근 30일)
sermet
sermet 2023년 9월 22일
이동: Torsten 2023년 9월 22일
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

채택된 답변

Torsten
Torsten 2023년 9월 22일
이동: Torsten 2023년 9월 22일
Return "A" from function "adjustment" as output argument and fill "AA" in the calling program.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by