multiple conditions in matrix
12 ビュー (過去 30 日間)
古いコメントを表示
I am receiving this error while applying multipe conditions in matrix
Code:
C= [rand(100,1),randi([0,2],100,1),randi([0,2],100,1),randi([5,12],100,1)]
d=C(C(:,2) == 1,: && (:,3) == 2, :)
0 件のコメント
採用された回答
Simon Chan
2021 年 7 月 10 日
編集済み: Simon Chan
2021 年 7 月 10 日
Do you want this?
d=C(C(:,2) == 1 & C(:,3) == 2)
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!