If any of the matrix element or elements value is 1 or greater than 1 , then how can I delete that row or rows from a (M * N) matrix ?
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
Akzeptierte Antwort
  KSSV
      
      
 am 26 Dez. 2022
        A = [2 4 1; 4 5 2 ; 2 4 1 ;3 1 3; 2 6 3] ;
idx = any(A==1,2) ;
A(idx,:)=[];
A
2 Kommentare
Weitere Antworten (1)
  Image Analyst
      
      
 am 26 Dez. 2022
        To learn other fundamental concepts, invest 2 hours of your time here:
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
