Data saving for a loop

1 回表示 (過去 30 日間)
NERTILA OGRENI
NERTILA OGRENI 2021 年 1 月 23 日
コメント済み: NERTILA OGRENI 2021 年 1 月 26 日
I have a code like this:
for i=1:n
%calculuse
for j=1:n
%calculus
for k=1:n
%calculus
Save results in a matrix
end
end
end
I want to save the matrix inside a bigger matrix with matrix elements for each loop inside dhe interioe loop (k=1:k)
Thank you in advance

採用された回答

William
William 2021 年 1 月 25 日
Nertila -- Yes, that is what this code does. Maybe it would be more clear if I wrote it in this way, with the k-index being the outer loop rather than the inner loop. In each iteration of the k-loop, an S(i,j) matrix is computed in the i and j loops, and then stored in a(k,:,:).
a = zeros(n,n,n);
S = zeros(n,n);
for k = 1:n
for i = 1:n
%calculus
for j = 1:n
calculus
S(i,j) = ...
end
end
a(k,:,:) = S;
end
  1 件のコメント
NERTILA OGRENI
NERTILA OGRENI 2021 年 1 月 26 日
Thank you very much!

サインインしてコメントする。

その他の回答 (1 件)

William
William 2021 年 1 月 23 日
a = zeros(n,n,n)
for i=1:n
%calculus
for j=1:n
%calculus
for k=1:n
%calculus
a(i,j,k) = result(k)
end
end
end
  2 件のコメント
NERTILA OGRENI
NERTILA OGRENI 2021 年 1 月 25 日
Can i do the same if i want to save matrixes as the element of the a?
NERTILA OGRENI
NERTILA OGRENI 2021 年 1 月 25 日
I mean I have a S(i,j) matrix wich is calculatet k times inside the interior loop. I want to save it in a result(i,j,k with elements these S (i,j)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by