This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
ans =
0
|
2 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
ans =
1.0000
|
3 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(your_fcn_name(x)-y_correct)<0.01)
ans =
-1.0000
|
309 Solvers
424 Solvers
204 Solvers
465 Solvers
66 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!