This is a pretty lame solution, but it is all you asked for...
It was just a first step for demonstration. More tests to come.
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 | Fail |
%%
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))
Error: Assertion failed.
|
1402 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
264 Solvers
631 Solvers
Magic is simple (for beginners)
1116 Solvers
Penny flipping - calculate winning probability (easy)
115 Solvers