This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
DecimalToBinaryVector is regarded as undefined function ???
That's right, because there is no such thing. These are named something else.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 76;
y_correct = 112;
assert(isequal(maxit(x),y_correct))
Error: Undefined function 'decimalToBinaryVector' for input arguments of type 'double'.
|
2 | Fail |
%%
x = 555;
y_correct = 992;
assert(isequal(maxit(x),y_correct))
Error: Undefined function 'decimalToBinaryVector' for input arguments of type 'double'.
|
3 | Fail |
%%
x = 1000;
y_correct = 1008;
assert(isequal(maxit(x),y_correct))
Error: Undefined function 'decimalToBinaryVector' for input arguments of type 'double'.
|
4 | Fail |
%%
x = 10000000;
y_correct = 16711680;
assert(isequal(maxit(x),y_correct))
Error: Undefined function 'decimalToBinaryVector' for input arguments of type 'double'.
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!