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))
|
1137 Solvers
104 Solvers
551 Solvers
136 Solvers
Celsius to Fahrenheit converter
280 Solvers