This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
VecStart= [10 20 30 40 50 ];
VecEnd = [11 22 33 44 50];
y_correct = [10 11 20 21 22 30 31 32 33 40 41 42 43 44 50];
assert(isequal(vec_colon(VecStart,VecEnd ),y_correct))
|
2 | Pass |
VecStart= [2 10 5 15 10 5 2 100 ];
VecEnd = [3 10 6 17 12 7 3 102];
y_correct = [2 3 10 5 6 15 16 17 10 11 12 5 6 7 2 3 100 101 102];
assert(isequal(vec_colon(VecStart,VecEnd ),y_correct))
|
3 | Pass |
VecStart = [1:10:500];
VecEnd = [10:10:500];
y_correct = [1:500];
assert(isequal(vec_colon(VecStart,VecEnd ),y_correct))
|
962 Solvers
Increment a number, given its digits
562 Solvers
Sum of diagonal of a square matrix
1327 Solvers
Getting the absolute index from a matrix
211 Solvers
219 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!