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!