Delete elements in a array
186 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I have a large array. I want to delete certain elements in the array. I want to delete the 390th element, and then after that every 391th element......
So need to delete 390, 781, 1182 etc..........
0 commentaires
Réponse acceptée
Wayne King
le 21 Avr 2012
So when you say "array", you mean a 1-D vector?
X = randn(49121,1);
indices = 390:391:length(X);
X(indices) = [];
length(X)
Plus de réponses (1)
Wayne King
le 21 Avr 2012
X = randn(100,100);
% not sure how far you want the vector to go
indices = 390:391:1e4;
X(indices) = [];
Then you'll need to reshape X into an array. Or you can just replace the elements with NaNs
X = randn(100,100);
% not sure how far you want the vector to go
X(indices) = NaN;
2 commentaires
Image Analyst
le 22 Avr 2012
Yes. 48996 to be precise, just like it does give you in the 1D version above.
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!