sum, vector elements, except i-th
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi,
how can I sum vector elements, say v = rand(1,30), except 12th one?
thanks,
0 commentaires
Réponse acceptée
Mona
le 8 Juil 2015
You can always do the sum, then subtract that single element, 12th, from the sum.
v = rand(1,30);
sum_except12=sum(v)-v(12)
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!