how i can remove row and column from matrix

4 visualizaciones (últimos 30 días)
abdelazeem hassan
abdelazeem hassan el 29 de Jul. de 2016
Comentada: Walter Roberson el 30 de Jul. de 2016
how i can remove row and column from matrix
ex: A=[1,2,3;4,5,6;7,8,9;10,11,12]
i need to remove second row and second column from the above matrix
A =[
1 3
7 9
10 12]

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Jul. de 2016
A = A([1, 3:end), [1, 3:end]);
or
A(2,:) = [];
A(:,2) = [];
You cannot use the [] delete operator on both rows and columns at the same time.
  3 comentarios
Image Analyst
Image Analyst el 30 de Jul. de 2016
Try
A = A([1, 3:end], [1, 3:end]);
Walter Roberson
Walter Roberson el 30 de Jul. de 2016
Sorry, yes, I made a typing mistake.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Translated by