Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 2;
y=4;
z=3;
y_correct = 19.3480;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
q =
19.3480
|
2 | Pass |
x = 2;
y=4;
z=0;
y_correct = 11.6021;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
q =
11.6021
|
3 | Pass |
x = 4;
y=4;
z=0;
y_correct = 0.2041;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
q =
0.2041
|
4 | Pass |
x = 4;
y=2;
z=0;
y_correct = 12.2041;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
q =
12.2041
|
5 | Pass |
x = 1;
y=1;
z=1;
y_correct = 1.2361;
assert(abs(expression_1(x,y,z)-y_correct)<0.0001)
q =
1.2361
|
1514 Solvers
285 Solvers
262 Solvers
145 Solvers
Compute LOG(1+X) in natural log
169 Solvers