Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('TANGENT.m');
assert(isempty(strfind(filetext, 'tan')),'tan() forbidden')
|
2 | Pass |
x = 0;
y_correct = 0;
assert(abs(TANGENT(x)-y_correct)<0.01)
y =
0
|
3 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(TANGENT(x)-y_correct)<0.01)
y =
1.0000
|
4 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(TANGENT(x)-y_correct)<0.01)
y =
-1.0000
|
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
1398 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
548 Solvers
492 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!