Numerical Analysis 2013
Reference texts
K. Atkinson, Introduction to Numerical Analysis, Wiley
David Kincaid and E. Ward Cheney, Numerical Analysis: Mathematics of scientific computing
Computer programs
Some of the programs are hosted on googlecode. To download the source code, click on the link to the right which says "View raw file". Then save the file to your computer.
Computer arithmetic
Root finding
Interpolation
Condition of vandermonde matrix: matlab
Interoplate nice function like cos(x) on uniform data: matlab
Interpolate on uniform and chebyshev points, Runge phenomenon: matlab
Interpolate |x| on uniform and chebyshev points: matlab
Interpolation to show Runge phenomenon, barycentric lagrange formula: python
Behaviour of interpolation error on uniform and chebyshev points: matlab
Behaviour of newton forward differences under roundoff error: matlab
Adaptive piecewise P1 interpolation: matlab
Trigonometric interpolation of periodic function: matlab
Comparison of trigonometric and polynomial interpolation: matlab
Convergence of trigonometric interpolation: matlab
Solving ODE
Euler method, convergence test: python
Euler method, convergence test: python
Euler method, instability example: python
Trapezoidal method, convergence test: python
Absolute stability domains of AB, AM, BDF schemes: python
Example of stiff ODE: python
ODE with periodic solution, quadratic invariant: python