i want to take each row in matrix
1 回表示 (過去 30 日間)
古いコメントを表示
i have matrix 7*3
i want to take 001 in the first
011and in the second
0 件のコメント
採用された回答
Rik
2020 年 5 月 18 日
Trivial with the color operator:
clc
data=[0 0 ;0 0 1;0 0 1;1 1 1;0 1 1;1 0 1;1 1 1];
for n=1:size(data,1)
tmp=data(n,:);
%do something useful with tmp
disp(tmp)
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!