How do I delete a row in a matrix?
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Lauren
 el 13 de Mzo. de 2015
  
    
    
    
    
    Comentada: Lauren
 el 13 de Mzo. de 2015
            Hi!
How would I delete all the rows that have a zero in the second column? For example, if I have the matrix
[1 3;2 0;3 11;4 8;5 0]
how could I delete the two rows containing zeroes to make my matrix look like
[1 3;3 11;4 8]
Thank you!!
0 comentarios
Respuesta aceptada
  James Tursa
      
      
 el 13 de Mzo. de 2015
        >> a = [1 3;2 0;3 11;4 8;5 0]
a =
     1     3
     2     0
     3    11
     4     8
     5     0
>> a(a(:,2)==0,:) = []
a =
     1     3
     3    11
     4     8
Más respuestas (0)
Ver también
Categorías
				Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

