how to formulate logical matrix in a loop?
2 ビュー (過去 30 日間)
古いコメントを表示
Shubham Mohan Tatpalliwar
2018 年 10 月 24 日
コメント済み: Andrei Bobrov
2018 年 10 月 25 日
i am having a matrix and want to separate them in the depending on its value
A=[1,2,3,4,5,6,7,8,9,10]
expected result are
idx1=[1,0,0,0,0,0,0,0,0,0] % for 1
...
idx10=[0,0,0,0,0,0,0,0,0,1] % for 10
0 件のコメント
採用された回答
Andrei Bobrov
2018 年 10 月 25 日
A = 1:10;
idx = A(:) == A(:)'
2 件のコメント
Andrei Bobrov
2018 年 10 月 25 日
what should i change to have a 5 rows with a step of 2
?
A = 1:2:10;
idx = A(:) == A(:)';
その他の回答 (1 件)
madhan ravi
2018 年 10 月 24 日
編集済み: madhan ravi
2018 年 10 月 24 日
A=[1,2,3,4,5,6,7,8,9,10]
RESULT = zeros(1,numel(A));
RESULT1= RESULT;
for i = 1:numel(A)
idx(i)=A(i)==1;
idx1(i)=A(i)==10;
end
RESULT(idx) = A(idx)
RESULT1(idx1) = A(idx1)
10 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!