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 |
%% case 1
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 |
%% case 2
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 |
%% case 3
VecStart = [1:10:500];
VecEnd = [10:10:500];
y_correct = [1:500];
assert(isequal(vec_colon(VecStart,VecEnd ),y_correct))
|
2261 Solvers
351 Solvers
find the maximum element of the matrix
348 Solvers
216 Solvers
462 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!