nonlinear_bisection
nonlinear_bisection,
demonstrates how a root of a function f(x) can be approximated using
the bisection method.
The notes:
Scripts and functions:
-
bisection1.m,
uses the bisection method for 10 steps.
-
bisection2.m,
uses the bisection method, and watches for success or failure.
-
bisection3.m,
uses the bisection method, watches for success or failure,
and computes the alpha ratio.
-
hump.m,
evaluates the hump function.
-
hump_bisection.m,
uses bisection2() to find a zero of hump().
-
hump_plot.m,
plots the hump function.
-
kepler.m,
evaluates the Kepler function.
-
kepler_bisection.m,
uses bisection2() to find a zero of kepler().
-
kepler_plot.m,
plots the Kepler function.
-
lambert.m,
evaluates the Lambert function.
-
lambert_bisection.m,
uses bisection2() to find a zero of lambert().
-
lambert_plot.m,
plots the Lambert function.
-
root5.m,
evaluates the root5 function.
-
trig.m,
evaluates the trig function.
-
trig_bisection.m,
uses bisection2() to find a zero of trig().
-
trig_plot.m,
plots the trig function.
-
wiggle.m,
evaluates the wiggle function.
-
wiggle_bisection.m,
uses bisection2() to find a zero of wiggle().
-
wiggle_plot.m,
plots the wiggle function.
Text files:
Images:
Last revised on 12 September 2019.