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

1 vue (au cours des 30 derniers jours)
VIJAY
VIJAY le 12 Août 2018
Réponse apportée : Matt J le 12 Août 2018
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]
  1 commentaire
KALYAN ACHARJYA
KALYAN ACHARJYA le 12 Août 2018
I have edited the answer, pls check and confirm?

Connectez-vous pour commenter.

Réponses (3)

Matt J
Matt J le 12 Août 2018
a=A(1:2:end,1:2:end),

KALYAN ACHARJYA
KALYAN ACHARJYA le 12 Août 2018
Modifié(e) : KALYAN ACHARJYA le 12 Août 2018
A(:,[2 4])=[]; A([2 4],:)=[];
  3 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 12 Août 2018
A(:,[2 4])=[] %to delete 2 and 4 col simultenously
KALYAN ACHARJYA
KALYAN ACHARJYA le 12 Août 2018
Answer here
A(:,[2 4])=[]; A([2 4],:)=[];

Connectez-vous pour commenter.


Paolo
Paolo le 12 Août 2018
A(:,2:2:4) = [];
A(2:2:4,:) = [];

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by