Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
trades = [1 3 -4 2 -1 2 3]
y_correct = 2;
assert(isequal(trade_profit(trades),y_correct))
trades =
1 3 -4 2 -1 2 3
y =
2
|
2 | Pass |
%%
trades = [1 2 3 -5]
y_correct = 1;
assert(isequal(trade_profit(trades),y_correct))
trades =
1 2 3 -5
y =
1
|
3 | Pass |
%%
trades = [1 2 3 4 5 6]
y_correct = 6;
assert(isequal(trade_profit(trades),y_correct))
trades =
1 2 3 4 5 6
y =
6
|
4 | Pass |
%%
trades = [-2 3 -4 5 -6 1 2 3 4 5]
y_correct = 3;
assert(isequal(trade_profit(trades),y_correct))
trades =
-2 3 -4 5 -6 1 2 3 4 5
y =
3
|
Renaming a field in a structure array
731 Solvers
306 Solvers
Remove the two elements next to NaN value
411 Solvers
Switch matrix to a column vector
260 Solvers
2314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!