Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 2;
y_correct = 1.0986;
assert( (log1(x)-y_correct)<0.0001)
|
2 | Pass |
x = 0;
y_correct = 0;
assert( (log1(x)-y_correct)<0.0001)
|
3 | Pass |
x = 1;
y_correct = 0.6931;
assert( (log1(x)-y_correct)<0.0001)
|
4 | Pass |
x = 9;
y_correct = 2.3026;
assert( (log1(x)-y_correct)<0.0001)
|
613 Solvers
641 Solvers
262 Solvers
615 Solvers
156 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!