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')))
|
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
434 Solvers
Determine Whether an array is empty
646 Solvers
273 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!