How to save output of double loop as a matrix?

조회 수: 5 (최근 30일)
Ammy
Ammy 2021년 9월 19일
댓글: Star Strider 2021년 9월 20일
for i=1:m
for j=1:n
A=myfunction(...)
end
end
where the output A is the square matrix.
How to save output A for each iteration

채택된 답변

Star Strider
Star Strider 2021년 9월 19일
Since ‘A’ is a matrix, save it as a cell array —
for i=1:m
for j=1:n
A{i,j} = myfunction(...)
end
end
.
  댓글 수: 2
Ammy
Ammy 2021년 9월 20일
Thank you very much.
Star Strider
Star Strider 2021년 9월 20일
As always, my pleasure!
.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by