How I can create this matrix?
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Sourasis Chattopadhyay
 el 6 de Ag. de 2021
  
    
    
    
    
    Comentada: Sourasis Chattopadhyay
 el 6 de Ag. de 2021
            
0 comentarios
Respuesta aceptada
Más respuestas (1)
  M.B
      
 el 6 de Ag. de 2021
        I just translated what you described. Next time try something on your own. Then ask for help when you are stuck. Learning comes with practice. 
tempA = A;% play with a temorary
deletthisrow = [];
for iter = size(tempA, 1):1
    if tempA(iter, 5)<1
        tempA(iter, :) = [];
    end
end
Ver también
Categorías
				Más información sobre Resizing and Reshaping 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!


