running matrix in a loop to produce another matrix

1 回表示 (過去 30 日間)
JL
JL 2019 年 8 月 22 日
コメント済み: JL 2019 年 8 月 22 日
Hi everyone, I have z
z = [1 1 0 0;
1 0 1 0;
1 0 0 1;
0 1 1 0;
0 1 0 1;
0 0 1 1;]
each of z's row are states that I want my code to go through one by one (from 1 1 0 0 to 0 0 1 1) , and after each state is run, it produces w. after running all the 6 states from z,
w = [a;
a;
a;
a;
a;
a;];
Is there a code where I can run each state of z in a loop, and produces w?
  2 件のコメント
Ted Shultz
Ted Shultz 2019 年 8 月 22 日
what is "a"?
JL
JL 2019 年 8 月 22 日
"a" is calculated number. Meaning, for each time it loop, "a" is generated until the loop finishes.

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

採用された回答

Ted Shultz
Ted Shultz 2019 年 8 月 22 日
This code will loop over each row of Z and put the results into w. I'm not sure what you want to do with each row.
z = [1 1 0 0;
1 0 1 0;
1 0 0 1;
0 1 1 0;
0 1 0 1;
0 0 1 1;]
numRows = size(z,1); % counts the number of rows
w = nan(numRows,1); % preallocate w;
for ii = 1:numRows
thisRow = z(ii,:);
% do something here to get a?
a=sum(thisRow);
w(ii) = a;
end
  3 件のコメント
Ted Shultz
Ted Shultz 2019 年 8 月 22 日
JL
JL 2019 年 8 月 22 日
Yes, I put it up as anothe question

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

その他の回答 (0 件)

カテゴリ

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