This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
why not this function ff2n?
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
n = 2;
A = binary_numbers(n);
assert(isequal(class(A), 'double'))
Error: Undefined function 'fullfact' for input arguments of type 'double'.
|
2 | Fail |
%%
n = 3;
A = binary_numbers(n);
assert(all(A(:) == 0 | A(:) == 1))
Error: Undefined function 'fullfact' for input arguments of type 'double'.
|
3 | Fail |
%%
n = 5;
A = binary_numbers(n);
assert(isequal(size(A),[32 5]))
Error: Undefined function 'fullfact' for input arguments of type 'double'.
|
4 | Fail |
%%
n = 10;
A = binary_numbers(n);
assert(isequal(size(unique(A,'rows'),1),1024))
Error: Undefined function 'fullfact' for input arguments of type 'double'.
|
5 | Fail |
%%
n = 1;
A = binary_numbers(n);
assert(isequal(A,[0;1]) || isequal(A,[1;0]))
Error: Undefined function 'fullfact' for input arguments of type 'double'.
|