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 Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by