Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
a = 1; b=2;
y_correct = [1 1.25 1.5 1.75 2];
assert(isequal(split_to_five(a,b),y_correct))
ans =
1×0 empty double row vector
|
2 | Fail |
a = 20; b=30;
y_correct = [20 22.5 25 27.5 30];
assert(isequal(split_to_five(a,b),y_correct))
ans =
1×0 empty double row vector
|
3 | Fail |
a = 30; b=-20;
y_correct = [30 17.5 5 -7.5 -20];
assert(isequal(split_to_five(a,b),y_correct))
ans =
1×0 empty double row vector
|
54282 Solvers
483 Solvers
376 Solvers
Sum the numbers on the main diagonal
453 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!