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.
|
Flip the main diagonal of a matrix
429 Solvers
38 Solvers
480 Solvers
Calculate compression ratio of engine
48 Solvers
248 Solvers