Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1; b=2;
y_correct = [1 1.25 1.5 1.75 2];
assert(isequal(split_to_five(a,b),y_correct))
|
2 | Pass |
a = 20; b=30;
y_correct = [20 22.5 25 27.5 30];
assert(isequal(split_to_five(a,b),y_correct))
|
3 | Pass |
a = 30; b=-20;
y_correct = [30 17.5 5 -7.5 -20];
assert(isequal(split_to_five(a,b),y_correct))
|
Find the alphabetic word product
2321 Solvers
Make one big string out of two smaller strings
1148 Solvers
401 Solvers
411 Solvers
Side of an equilateral triangle
2595 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!