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)
ans =
1
|
3 | Pass |
x = pi/2;
y_correct = 0;
assert(abs(COS(x)-y_correct)<0.01)
ans =
0
|
4 | Pass |
x = pi;
y_correct = -1;
assert(abs(COS(x)-y_correct)<0.01)
ans =
-1
|
5 | Pass |
x = 3*pi/2;
y_correct = 0;
assert(abs(COS(x)-y_correct)<0.01)
ans =
-1.2246e-16
|
Return a list sorted by number of occurrences
1504 Solvers
Project Euler: Problem 5, Smallest multiple
397 Solvers
Number of digits in an integer
336 Solvers
5113 Solvers
130 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!