Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('TANGENT.m');
assert(isempty(strfind(filetext, 'tan')),'tan() forbidden')
assert(isempty(strfind(filetext, 'sin')),'sin() forbidden')
|
2 | Pass |
x = 0;
y_correct = 0;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
0
|
3 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
1.0000
|
4 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
-1.0000
|
17127 Solvers
232 Solvers
Find the largest value in the 3D matrix
897 Solvers
413 Solvers
Matlab Basics - y as a function of x
241 Solvers