Vector and matrix average

1 回表示 (過去 30 日間)
matt noman
matt noman 2020 年 2 月 8 日
回答済み: Image Analyst 2020 年 2 月 9 日
how do I find the average of ths function in matlab
a=[2.42,3.4,4.5,5.63]
b=6
I want to find the average by adding all the numbers in a and b together and then divide them by 6 how would I write that code
  2 件のコメント
Star Strider
Star Strider 2020 年 2 月 8 日
stozaki
stozaki 2020 年 2 月 9 日
a=[2.4,2,3.4,4.5,5.63];
ave_a = mean(a);

サインインしてコメントする。

回答 (2 件)

stozaki
stozaki 2020 年 2 月 9 日
a=[2.4,2,3.4,4.5,5.63];
ave_a = mean(a);

Image Analyst
Image Analyst 2020 年 2 月 9 日
Nearly everyone would use mean, like they've told you. However if you want to do it like you said, using the sum and number of elements in the two variables, you'd do this
a=[2.4,2,3.4,4.5,5.63]
b = 6
theSum = sum(a) + sum(b)
numberOfElements = numel(a) + numel(b)
theMean = theSum / numberOfElements

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by