Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0 0 0 0 3 0 0];
y_correct = 20.30;
assert(isequal(mymoney(x),y_correct))
y =
20.3000
|
2 | Pass |
x = [1 0 1 0 2 3 0 0];
y_correct = 25.80;
assert(isequal(mymoney(x),y_correct))
y =
25.8000
|
3 | Pass |
x = [0 0 0 3 2 3 5 9];
y_correct = 4.14;
assert(isequal(mymoney(x),y_correct))
y =
4.1400
|
4 | Pass |
x = [1 2 0 0 0 0 0 0];
y_correct = 40.00;
assert(isequal(mymoney(x),y_correct))
y =
40
|
314 Solvers
485 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find my daddy long leg (No 's')
632 Solvers
Generate a vector which contains a pyramid pattern (★★★★)
39 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!