Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
P= 100000;
old_rate=10.25%
new_rate=10.00%
y_correct = 250;
assert(isequal(saving(P,old_rate,new_rate),y_correct))
old_rate =
10.2500
new_rate =
10
|
2 | Pass |
%%
P= 500000;
old_rate=10.25%
new_rate=10.00%
y_correct = 1250;
assert(isequal(saving(P,old_rate,new_rate),y_correct))
old_rate =
10.2500
new_rate =
10
|
3 | Pass |
%%
P= 500000;
old_rate=10.00%
new_rate=9.75%
y_correct = 1250;
assert(isequal(saving(P,old_rate,new_rate),y_correct))
old_rate =
10
new_rate =
9.7500
|
Make a random, non-repeating vector.
1119 Solvers
690 Solvers
Back to basics - mean of corner elements of a matrix
236 Solvers
244 Solvers
Matlab Basics - Logical Tests I
139 Solvers