Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 123;
x_correct = [1 2 3];
assert(isequal(int2vec(x),x_correct))
ans =
1 2 3
|
2 | Pass |
%%
x = 56409;
x_correct = [5 6 4 0 9];
assert(isequal(int2vec(x),x_correct))
ans =
5 6 4 0 9
|
3 | Pass |
%%
x = 1000;
x_correct = [1 0 0 0];
assert(isequal(int2vec(x),x_correct))
ans =
1 0 0 0
|
338 Solvers
381 Solvers
405 Solvers
Side of an equilateral triangle
2598 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!