フィルターのクリア

How to save output of loop in matrix ?

5 ビュー (過去 30 日間)
Govind Kumar
Govind Kumar 2019 年 6 月 20 日
編集済み: Aravind Ravikumar 2019 年 6 月 20 日
I have 1000*129*135 3D array. I want to store the output of following programe in matrix form.
for i=1:129 j=1:135;
b=a(:,i,j)
% some operation on b
c=output %after operation on b
end
I want to save output of all iteration in 129*135 matrix. How to do that?

回答 (1 件)

Aravind Ravikumar
Aravind Ravikumar 2019 年 6 月 20 日
編集済み: Aravind Ravikumar 2019 年 6 月 20 日
I am assuming the output from the operation (c) is a scalar. You could initialize a matrix, say
output_matrix = zeros(129,135);
Then you could assign output c to the respective index in the matrix. For example inside your for loop in the script you could insert the following code,
output_matrix(i,j) = c;
Your required matrix will be output_matrix.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by