how to sum all elements of one vector?

79 visualizzazioni (ultimi 30 giorni)
fathi
fathi il 10 Ott 2017
Modificato: Jan il 10 Ott 2017
hi every one ; how to sum elements of one vector ; Ex: if C =[ 2;3;4;5] .. D = the summation of all elements in C , D = 14. So how can i get D??... by the way how can i divide each element from C over D .. so C will be = [0.1428 ;0.2142; 0.2857; 0.3571] . thanks

Risposte (1)

KL
KL il 10 Ott 2017
Modificato: KL il 10 Ott 2017
  3 Commenti
fathi
fathi il 10 Ott 2017
thanks, mr KL, but the summation of C supposes to be 14 . just one number. if I use D = sum(C); D= 0.6196 0.8000 0.6706 0.5765.
Jan
Jan il 10 Ott 2017
Modificato: Jan il 10 Ott 2017
Then you must have redefined the function "sum" by a variable. Try this again:
clear sum
C = [2;3;4;5]
D = sum(C)
E = C ./ D

Accedi per commentare.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by