how to delete row and column at a single command????????????

A=[1 2 3 4 5; 6 7 8 9 10; 11 12 13 14 15; 16 17 18 19 20;];
I want to delete 2row and 2 column,4 row and 4 column
my require output is
a=[1 3 5; 11 13 15]

Respuestas (3)

KALYAN ACHARJYA
KALYAN ACHARJYA el 12 de Ag. de 2018
Editada: KALYAN ACHARJYA el 12 de Ag. de 2018
A(:,[2 4])=[]; A([2 4],:)=[];

3 comentarios

VIJAY
VIJAY el 12 de Ag. de 2018
regard your answer A=[1 3 4 5; 11 13 14 15; 16 18 19 20;]
Now size of array is 3*3 then how can i delete 4 row and 4 column ???????
A(:,[2 4])=[] %to delete 2 and 4 col simultenously
Answer here
A(:,[2 4])=[]; A([2 4],:)=[];

Iniciar sesión para comentar.

Categorías

Preguntada:

el 12 de Ag. de 2018

Respondida:

el 12 de Ag. de 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by