Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 123;
x_correct = [1 2 3];
assert(isequal(int2vec(x),x_correct))
y =
[]
y =
1
y =
1 2
y =
1 2 3
|
2 | Pass |
%%
x = 56409;
x_correct = [5 6 4 0 9];
assert(isequal(int2vec(x),x_correct))
y =
[]
y =
5
y =
5 6
y =
5 6 4
y =
5 6 4 0
y =
5 6 4 0 9
|
3 | Pass |
%%
x = 1000;
x_correct = [1 0 0 0];
assert(isequal(int2vec(x),x_correct))
y =
[]
y =
1
y =
1 0
y =
1 0 0
y =
1 0 0 0
|
6364 Solvers
Getting the indices from a vector
3206 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
484 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!