in each iteration I want to get the sum of all elements except of the i element

3 visualizzazioni (ultimi 30 giorni)
%% for example in the second itreation (i=2) I want the sum of all elements except the 3 (second element)
a=[1 3 2 1 4 2 1 5 1 2]
for i=1:length(a)
s= sum(aa(d+1:end))
end
  2 Commenti
Rik
Rik il 15 Dic 2021
in each iteration I want to get the sum of all elements except of the i element
%% for example in the second itreation (i=2) I want the sum of all elements except the 3 (second element)
a=[1 3 2 1 4 2 1 5 1 2]
for i=1:length(a)
s= sum(aa(d+1:end))
end

Accedi per commentare.

Risposta accettata

Scott MacKenzie
Scott MacKenzie il 26 Giu 2021
for i = 1:length(a)
s = sum(a)-a(i)
end

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements 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!

Translated by