Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('TANGENT.m');
assert(isempty(strfind(filetext, 'tan')),'tan() forbidden')
|
2 | Pass |
x = 0;
y_correct = 0;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
0
|
3 | Pass |
x = pi/4;
y_correct = 1;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
1.0000
|
4 | Pass |
x = -pi/4;
y_correct = -1;
assert(abs(TANGENT(x)-y_correct)<0.01)
ans =
-1.0000
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Find out sum of prime number till given number
125 Solvers
110 Solvers
Calculate solution of given polynomial
57 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!