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]))
|
Select every other element of a vector
20341 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Split a string into chunks of specified length
475 Solvers
Find the dimensions of a matrix
372 Solvers
2864 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!