sum, vector elements, except i-th
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hi,
how can I sum vector elements, say v = rand(1,30), except 12th one?
thanks,
0 Commenti
Risposta accettata
Mona
il 8 Lug 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)
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!