Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('COS.m');
assert(isempty(strfind(filetext, 'cos')),'cos() forbidden')
|
2 | Pass |
x = 0;
y_correct = 1;
assert(abs(COS(x)-y_correct)<0.01)
y =
1
|
3 | Pass |
x = pi/2;
y_correct = 0;
assert(abs(COS(x)-y_correct)<0.01)
y =
0
|
4 | Pass |
x = pi;
y_correct = -1;
assert(abs(COS(x)-y_correct)<0.01)
y =
1
y =
-1
|
5 | Pass |
x = 3*pi/2;
y_correct = 0;
assert(abs(COS(x)-y_correct)<0.01)
y =
0
|
338 Solvers
Create an index-powered vector
352 Solvers
248 Solvers
142 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!