1.4.3. Hints for Numeric Methods Homework Assignment¶
Note
There is also a video recording to help complete the assignment: Numeric Methods Homework Assignment (16:09)
- See Fzero for an example of using
fplot
andfzero
. - See Data Interpolation for an example of making subplots and using
interp1
. - Trapezoid rule: See Trapezoid Rule Integrals for an example of how to use
the
trapIntegral
function. The code for the function is in the study guide and also in the code downloaded from Canvas. - Simpson rule: See Simpson’s Rule Integrals for an example of how to use
the
simpsonIntegral
function. The code for the function is in the study guide and also in the code downloaded from Canvas. - Recursive Adaptive Integral: See Recursive Adaptive Integral for an
example of how to use the
adaptIntegral
function. The code for the function is in the study guide and also in the code downloaded from Canvas. - MATLAB’s integral function: See MATLAB’s Integral Function for an
example of how to use the
integral
function that comes with MATLAB.
- Trapezoid rule: See Trapezoid Rule Integrals for an example of how to use
the
- See the logistic equation example in The Logistic Equation.