Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 2;
A = binary_numbers(n);
assert(isequal(class(A), 'double'))
|
2 | Pass |
n = 3;
A = binary_numbers(n);
assert(all(A(:) == 0 | A(:) == 1))
|
3 | Pass |
n = 5;
A = binary_numbers(n);
assert(isequal(size(A),[32 5]))
|
4 | Pass |
n = 10;
A = binary_numbers(n);
assert(isequal(size(unique(A,'rows'),1),1024))
|
5 | Pass |
n = 1;
A = binary_numbers(n);
assert(isequal(A,[0;1]) || isequal(A,[1;0]))
|
1327 Solvers
606 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
1097 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!