Selectring specifics rows of matrix

1 visualización (últimos 30 días)
Dominik Maly
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

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Dic. de 2018
It's just super basic MATLAB indexing. Try this:
smallerMatrix = fullMatrix(26 : 104, :);
  1 comentario
Dominik Maly
Dominik Maly el 22 de Dic. de 2018
Thank You very much, it's really easy :D

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices 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!

Translated by