Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
|
2 | Pass |
x = pi/2;
y_correct = 1;
assert(abs(SIN(x)-y_correct)<0.01)
|
3 | Pass |
x = pi;
y_correct = 0;
assert(abs(SIN(x)-y_correct)<0.01)
|
4 | Pass |
x = 1.5*pi;
y_correct = -1;
assert(abs(SIN(x)-y_correct)<0.01)
|
Generate a string like abbcccddddeeeee
234 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
Is this triangle right-angled?
2394 Solvers
Find Out sum of principal diagonal element of given matrix
194 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!