Selectring specifics rows of matrix
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Dominik Maly
 el 22 de Dic. de 2018
  
    
    
    
    
    Abierta de nuevo: Walter Roberson
      
      
 el 23 de Dic. de 2018
            Hi!
I've got very irritating problem. I've got 259x399 matrix. I want to cut it, beacuse i need only rows from 26 to 104 of each column. How can i do that? Reshape isn't really working
0 comentarios
Respuesta aceptada
  Image Analyst
      
      
 el 22 de Dic. de 2018
        It's just super basic MATLAB indexing.  Try this:
smallerMatrix = fullMatrix(26 : 104, :);
Más respuestas (0)
Ver también
Categorías
				Más información sobre Matrix Indexing en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

