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))
ans =
1.0000 1.2500 1.5000 1.7500 2.0000
|
2 | Pass |
a = 20; b=30;
y_correct = [20 22.5 25 27.5 30];
assert(isequal(split_to_five(a,b),y_correct))
ans =
20.0000 22.5000 25.0000 27.5000 30.0000
|
3 | Pass |
a = 30; b=-20;
y_correct = [30 17.5 5 -7.5 -20];
assert(isequal(split_to_five(a,b),y_correct))
ans =
30.0000 17.5000 5.0000 -7.5000 -20.0000
|
1055 Solvers
Find common elements in matrix rows
809 Solvers
205 Solvers
Determine the number of odd integers in a vector
320 Solvers
153 Solvers