how to sum all elements of one vector?

75 ビュー (過去 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 Center および File ExchangeRange and Doppler Estimation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by