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))
|
2 | Pass |
x = [1 0 1 0 2 3 0 0];
y_correct = 25.80;
assert(isequal(mymoney(x),y_correct))
|
3 | Pass |
x = [0 0 0 3 2 3 5 9];
y_correct = 4.14;
assert(isequal(mymoney(x),y_correct))
|
4 | Pass |
x = [1 2 0 0 0 0 0 0];
y_correct = 40.00;
assert(isequal(mymoney(x),y_correct))
|
Back to basics 23 - Triangular matrix
634 Solvers
436 Solvers
155 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
176 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!