Creating new matrix with another matrix

1 visualización (últimos 30 días)
TUGRUL KURNAZ
TUGRUL KURNAZ el 20 de Nov. de 2019
Respondida: Rik el 20 de Nov. de 2019
We have a matrix,if any of the rows has a 0 at the last column we take the that row to write a new matrix and it will continue till the end of the old matrix.

Respuestas (1)

Rik
Rik el 20 de Nov. de 2019
Do you mean something like this?
data=randi([-2 5],[50 70]);
hasZeroInLastCol= data(:,end)==0;
newdata=data(hasZeroInLastCol,:);

Categorías

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