-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Andy edited this page Nov 3, 2017
·
2 revisions
This is just a simple page to explain what the contents of each folder is, since it is pretty vaguely named.
This homework is a simple check of understanding for rates of convergence and float point errors.
-
prob5.pywas written to compare rates of convergence. -
prob6.pywas written to determine machine epsilon, xmin, and xmax in both single and double precision.
This homework is focused on Nonlinear Solvers.
-
aitken_fp.pyimplements an Aitken Extrapolation. -
fixed_point.pyimplements a standard Fixed Point Iteration. -
newton.pyimplements a scalar-valued Newton's Method (Newton–Raphson method) -
steffensen.pyimplements a scalar-valued Steffensen's Method. -
prob3.pyis a testing file to race Newton's Method v. Steffensen's Method. -
prob4.pyis a testing file to compare a standard fixed point iteration to an Aitken Extrapolation.
This homework is focused on Interpolation.
-
quadratic_sol.pyis a root finder I designed to use polynomial interpolation to do root finding. -
prob2.pyis a testing file to race my solver against Newton's Method and Steffensen's Method. -
newton.pyimplements a scalar-valued Newton's Method (Newton–Raphson method) -
steffensen.pyimplements a scalar-valued Steffensen's Method.
This homework is focused on Cubic Spline Interpolation.
-
cubic_spline.pycontains functions to build and evaluate a cubic spline with certain boundary conditions. -
Runge_spline_test.pyis a testing file to create and plot the results of a cubic spline interpolating the 1D Runge function.