Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
ans =
6.1232e-17
|
2 | Pass |
x = pi/2;
y_correct = 1;
assert(abs(SIN(x)-y_correct)<0.01)
ans =
1
|
3 | Pass |
x = pi;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
ans =
6.1232e-17
|
4 | Pass |
x = 1.5*pi;
y_correct = -1;
assert(abs(SIN(x)-y_correct)<0.01)
ans =
-1
|
2183 Solvers
07 - Common functions and indexing 5
314 Solvers
519 Solvers
Is this triangle right-angled?
2874 Solvers
Flip the vector from right to left
2666 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!