Why is function "odd" not working?
good job
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
n = 1;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
2 | Fail |
%%
n = 2;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
3 | Fail |
%%
n = 28;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
4 | Fail |
%%
n = 453;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
5 | Fail |
%%
n = 17;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
6 | Fail |
%%
n = 16;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_correct))
Error: Undefined function 'odd' for input arguments of type 'double'.
|
829 Solvers
Matrix indexing with two vectors of indices
485 Solvers
Get the length of a given vector
3570 Solvers
573 Solvers
262 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!