This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
try count_to_v([2,2])...
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
v = [1 2];
y_correct = [1 1; 1 2];
assert(isequal(count_to_v(v),y_correct))
|
2 | Pass |
%%
v = [3 2];
y_correct = [1 1; 1 2; 2 1; 2 2; 3 1; 3 2];
assert(isequal(count_to_v(v),y_correct))
|
3972 Solvers
Back to basics 6 - Column Vector
908 Solvers
Getting the row and column location from a matrix
236 Solvers
120 Solvers
489 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!