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
|
Find relatively common elements in matrix rows
865 Solvers
556 Solvers
Create a cell array out of a struct
508 Solvers
484 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!