How to delete data from 2D matrix?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Wei Qing
le 9 Jan 2013
Commenté : John D'Errico
le 3 Juin 2014
a = 155 34,
127 134,
223 334,
135 366,
123 418,
Lets say I want to delete the second row data so a become like this.
a = 155 34,
223 334,
135 366,
123 418,
0 commentaires
Réponse acceptée
Image Analyst
le 9 Jan 2013
a(2,:) = [];
2 commentaires
Grace
le 3 Juin 2014
Hi, extended from this question, what if i want to delete several rows from a matrix? How am i going to do this?
John D'Errico
le 3 Juin 2014
TRY SOMETHING! Logically, what would this do:
a([2 3],:) = [];
??
The trick to MATLAB is to try out what seems logical. Very often it will do what you might expect. Read the help where possible, but you will learn much by playing around.
Plus de réponses (0)
Voir également
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!