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)
|
3 | Pass |
x = pi/2;
y_correct = 0;
assert(abs(COS(x)-y_correct)<0.01)
|
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)
|
Create an n-by-n null matrix and fill with ones certain positions
270 Solvers
320 Solvers
Find the square of the sum of the digits of a number
119 Solvers
289 Solvers
259 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!