How to find all rows other than a particular row?
    조회 수: 13 (최근 30일)
  
       이전 댓글 표시
    
Hey all
how can i find all rows other than a particular row in a matrix?
    matrix = [1,1,1,0,0;0,1,1,1,0;0,0,1,0,1]
    result = {[2;3];[1;3];[1;2]}
e.g. if we are considering row 1 then all other rows in matrix will be shown in result except row 1
채택된 답변
  KSSV
      
      
 2018년 1월 5일
        Let's say you have N rows.....and you have selected M'th row, then use Setdiff to get what you want.
N = 12 ;    % 12 rows 
M = 3;      % selected 3rd row
iwant = setdiff(1:N,M)
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


