averages of a matrix

조회 수: 4 (최근 30일)
Anthony Campuzano
Anthony Campuzano 2015년 6월 8일
댓글: Salaheddin Hosseinzadeh 2015년 6월 8일
Given variable A that contains a row vector of values, and variable w that contains a row vector of weights, compute the weighted average of A and store the result into variable W_A
Examples: Inputs A = [1 2 3], w = [4 6 1] Output W_A = (1*4 + 2*6 + 3*1)/3 = 6.3333
Inputs A = [5.4 3 2.1 7], w = [1 1 0.5 1]
Output W_A = (5.4*1 + 3*1 + 2.1*0.5 + 7*1)/4 = 4.1125
I don't think the question is asking about weighted avg properly, so you can ignore that. I am just trying to figure out the proper code that would be capable of solving the example problems above...
  댓글 수: 1
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2015년 6월 8일
Anthony
Be careful what you want. Star Strider mentioned a good point.

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

답변 (2개)

Star Strider
Star Strider 2015년 6월 8일
The weighted mean is the sum of the product of the values times the weights divided by the sum of the weights:
WgtdMean = sum(A.*w)/sum(w);
See the Wikipedia article: Weighted arithmetic mean.

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh 2015년 6월 8일
Hi Anthony,
This is very basic, please read more
output = mean(A.*B)
That's all

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by