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))
|
Who knows the last digit of pi?
557 Solvers
Sort numbers by outside digits
128 Solvers
Multiples of a Number in a Given Range
214 Solvers
120 Solvers
272 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!