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 longest sequence of 1's in a binary sequence.
3370 Solvers
3238 Solvers
Return a list sorted by number of occurrences
1504 Solvers
Flip the main diagonal of a matrix
506 Solvers
07 - Common functions and indexing 1
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!