This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 0;
y_correct = 0;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
|
2 | Pass |
n = 0.1;
y_correct = 0.0750;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
|
3 | Pass |
n = 1;
y_correct = 0.7500;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
|
4 | Pass |
n = -1;
y_correct = -0.7500;
tolerance = 1e-12;
assert(abs(no_mult_div(n)-y_correct)<tolerance);
|
All your base are belong to us
463 Solvers
227 Solvers
Create a two dimensional zero matrix
354 Solvers
147 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!