how to sum all elements of one vector?

조회 수: 78 (최근 30일)
fathi
fathi 2017년 10월 10일
편집: Jan 2017년 10월 10일
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

답변 (1개)

KL
KL 2017년 10월 10일
편집: KL 2017년 10월 10일
  댓글 수: 3
fathi
fathi 2017년 10월 10일
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 2017년 10월 10일
편집: Jan 2017년 10월 10일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Range and Doppler Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by