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 trapezoidrule 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 simpsonrule 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 matlabIntegral for an example of how to use the
integral
function that comes with MATLAB.
See the logistic equation example in The Logistic Equation.