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
fplotandfzero.See Data Interpolation for an example of making subplots and using
interp1.Trapezoid rule: See trapezoidrule for an example of how to use the
trapIntegralfunction. The code for the function is in the study guide and also in the code downloaded from Canvas.Simpson rule: See simpsonrule for an example of how to use the
simpsonIntegralfunction. 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
adaptIntegralfunction. The code for the function is in the study guide and also in the code downloaded from Canvas.MATLAB’s integral function: See matlabIntegral for an example of how to use the
integralfunction that comes with MATLAB.
See the logistic equation example in The Logistic Equation.