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)

  1. See Fzero for an example of using fplot and fzero.
  2. See Data Interpolation for an example of making subplots and using interp1.
    1. 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.
    2. 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.
    3. 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.
    4. MATLAB’s integral function: See MATLAB’s Integral Function for an example of how to use the integral function that comes with MATLAB.
  3. See the logistic equation example in The Logistic Equation.