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)
|
620 Solvers
Calculate the derivative of a polynomial
168 Solvers
The sum of the numbers in the vector
426 Solvers
484 Solvers
construct matrix with identical rows
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!