Borrar filtros
Borrar filtros

How to discard entries from a matrix

1 visualización (últimos 30 días)
Iftekharuddin Syed
Iftekharuddin Syed el 12 de Nov. de 2020
Comentada: Setsuna Yuuki. el 12 de Nov. de 2020
There is a matrix A (size:12x1000)
I want to extract entires after the 100th value, that means all the values before 100(i.e.1 to 99) are discarded. And the resulting matrix contains only values from 100th column to 1000th column.
Can anyone help me with the code.
  1 comentario
Setsuna Yuuki.
Setsuna Yuuki. el 12 de Nov. de 2020
A = ones(12,1000); % 12x1000 matrix
B = A(:,100:1000); % A(1-----12,100 -------> 1000)

Iniciar sesión para comentar.

Respuesta aceptada

Steven Lord
Steven Lord el 12 de Nov. de 2020

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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!

Translated by