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 =
1.2246e-16
|
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 =
-2.4493e-16
|
Find the sum of all the numbers of the input vector
31956 Solvers
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
620 Solvers
444 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!