how to sum all elements of one vector?
Show older comments
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
Answers (1)
D = sum(C);
div = C./D; %./ meaning element-wise division
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!