How can I remove redundant rows in matrix with respect two just first three columns?
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
A=       [1,1,4,5,6; 
          2,7,4,5,7;
          1,1,4,2,3;]
I want the matrix to remove redundant elements based on just first three columns, so my result should be
A = [1,1,4,5,6;
     2,7,4,5,7]
I tried
unique(A,'rows')
But it works for all the columns. How do I proceed with it?
0 Commenti
Risposte (1)
Vedere anche
Categorie
				Scopri di più su Polynomials in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

