Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [10 15 20 10];
W = [ 1 1 1 1];
Y = 13.75
assert(isequal(weighted_average(A,W),Y))
Y =
13.7500
|
2 | Pass |
A = [ 10 15 20 10];
W = [0.25 0.25 0.25 0.25];
Y = 13.75
assert(isequal(weighted_average(A,W),Y))
Y =
13.7500
|
3 | Pass |
A = [10 15 20 10];
W = [ 2 4 4 2];
Y = 15
assert(isequal(weighted_average(A,W),Y))
Y =
15
|
4 | Pass |
assert(~any(strfind(lower(fileread('weighted_average.m')),'regexp')))
|
5 | Pass |
assert(~any(strfind(lower(fileread('weighted_average.m')),'feval')))
|
6 | Pass |
assert(~any(strfind(lower(fileread('weighted_average.m')),'eval')))
|
386 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
Get the length of a given vector
3559 Solvers
509 Solvers
2770 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!