Why is the size 2 for this solution?
This funciton fails the assertions when I run it, and it becomes size 14. I am confounded.
I am a bit bewildered about the size too. According MathWorks, it ought to be higher due to the inspection algorithm (see <>).
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 4*pi;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
Error: Assertion failed.
|
2 | Fail |
%%
x = 400*pi;
y_correct = 10;
assert(isequal(your_fcn_name(x),y_correct))
Error: Assertion failed.
|
3 | Fail |
%%
x = 40000*pi;
y_correct = 100;
assert(isequal(your_fcn_name(x),y_correct))
Error: Assertion failed.
|
4 | Fail |
%%
x = -4*pi;
y_correct = 1i;
assert(isequal(your_fcn_name(x),y_correct))
Error: Assertion failed.
|
2980 Solvers
6283 Solvers
Determine Whether an array is empty
646 Solvers
255 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!