Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('TANGENT.m');
assert(isempty(strfind(filetext, 'tan')),'tan() forbidden')
assert(isempty(strfind(filetext, 'cos')),'cos() forbidden')
|
2 | Pass |
x = 0;
y_correct = 0;
assert(abs(TANGENT(x)-y_correct)<0.01)
|
3 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(TANGENT(x)-y_correct)<0.01)
|
4 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(TANGENT(x)-y_correct)<0.01)
|
Back to basics 12 - Input Arguments
525 Solvers
Duplicate each element of a vector.
518 Solvers
254 Solvers
212 Solvers
51 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!