This document discusses numerical methods in MATLAB, including root finding, interpolation, integration, and solving ordinary differential equations. It provides examples of using MATLAB functions like fzero, roots, interp1, quad, and ode45. The key functions and methods covered are:
- fzero finds roots of univariate functions numerically. roots finds roots of polynomials.
- interp1 performs one-dimensional interpolation using methods like nearest, linear, spline, and cubic interpolation.
- quad and quad8 numerically evaluate integrals of varying accuracy and order.
- ode23, ode45, ode113, ode15s, and ode23s solve non-stiff and stiff ordinary differential equations.