Effacer les filtres
Effacer les filtres

using function to remove elements from a large matrix

1 vue (au cours des 30 derniers jours)
Malik Khan
Malik Khan le 25 Déc 2019
Modifié(e) : Malik Khan le 3 Jan 2020
I need to code for a matrix in which the rows are removed given thier value in a certain column is not of desire to me. eg, I want to keep the numbers 1 2 3 and 11 and 12 but not 4 5 6 or 13 14 etc.
  3 commentaires
KALYAN ACHARJYA
KALYAN ACHARJYA le 25 Déc 2019
Have you tried, please show your efforts?
Malik Khan
Malik Khan le 25 Déc 2019
I have not attempted this yet because I have no idea where to start

Connectez-vous pour commenter.

Réponse acceptée

the cyclist
the cyclist le 25 Déc 2019
Modifié(e) : the cyclist le 25 Déc 2019
idxToKeep = ismember(M(:,2),[1,2,3,11,12]);
M = M(idxToKeep,:);

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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