Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
y =
-1.8370e-16
|
2 | Pass |
x = pi/2;
y_correct = 1;
assert(abs(SIN(x)-y_correct)<0.01)
y =
1
|
3 | Pass |
x = pi;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
y =
3.0616e-16
|
4 | Pass |
x = 1.5*pi;
y_correct = -1;
assert(abs(SIN(x)-y_correct)<0.01)
y =
-1
|
3968 Solvers
All your base are belong to us
463 Solvers
205 Solvers
530 Solvers
480 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!