Deleting multiple cell rows after using uiimport
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Is there a way to delete multiple rows from an imported csv file after using uiimport()? For example: rows 1-8, 917-932, 1841-1856... etc The reason for needing these rows deleted is that they give invalid numbers and mess up analysis and plotting.
Thanks
0 commentaires
Réponse acceptée
Kye Taylor
le 15 Juin 2012
If C is a cell, delete rows j through k using
C(j:k,:) = []; % note use of parentheses and not braces to index
5 commentaires
Plus de réponses (0)
Voir également
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!