Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
f=@(x) x.^2-4;
x_lower = 1;
x_upper = 3;
es = 0;
maxit=1;
x_root_correct = 2;
assert(isequal(bisection(f,x_lower,x_upper,es,maxit),x_root_correct))
|
2 | Pass |
%%
f=@(x) x.^2-4;
x_lower = 1;
x_upper = 4;
es = 0;
maxit=1;
x_root = 2.5;
assert(isequal(bisection(f,x_lower,x_upper,es,maxit),x_root))
|
3 | Pass |
%%
f=@(x) x.^2-4;
x_lower = 1;
x_upper = 4;
x_root = 2.000000476837158;
assert(isequal(bisection(f,x_lower,x_upper),x_root))
|
Calculate the Levenshtein distance between two strings
456 Solvers
61 Solvers
752 Solvers
401 Solvers
519 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!