This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
I like the commented "y =(x*w.')/length(x)" more than the "shorter" solution.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3];
w = [10 15 20];
y_correct = 100/3;
assert(isequal(weighted_average(x,w),y_correct))
|
2 | Pass |
%%
x = [0 -2 3];
w = [10 0 10];
y_correct = 10;
assert(isequal(weighted_average(x,w),y_correct))
|
190 Solvers
477 Solvers
309 Solvers
Rounding off numbers to n decimals
281 Solvers
171 Solvers