vector manipulation by a function
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Lila wagou
le 7 Avr 2017
Modifié(e) : Image Analyst
le 8 Avr 2017
Dear all; please how to trait a A vector (eliminate the elements stocked in B vector by order)
A = [10 52 33]
B = [3]
ii = num2cell([1]*setdiff(1:length(A),B(:)'),1);
out = A(ii{:});
i get out = 52 so i must get out = 10 52 (eliminate the third element)
0 commentaires
Réponse acceptée
Image Analyst
le 8 Avr 2017
Modifié(e) : Image Analyst
le 8 Avr 2017
Don't do that complicated stuff with cell arrays, etc. If you want to delete the third element (or ALL the elements listed in B), then simply do
out = A; % Initialize an output variable - make a copy of A.
out(B) = []; % Delete indexes given in B
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and 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!