EGR 103/Fall 2021/Lab 12
Revision as of 15:37, 16 November 2021 by DukeEgr93 (talk | contribs) (Created page with "== Assignment == You will be using interpolation to find estimates between data points. See Python:Interpolation for more information. ===Chapra 18.009=== Remember that...")
Assignment
You will be using interpolation to find estimates between data points. See Python:Interpolation for more information.
Chapra 18.009
Remember that polynomial interpolation means polynomial fitting with the order of the polynomial being one less than the number of points. It should hit all the data points.
Chapra 18.010
Pay attention to the Python:Interpolation#Cubic_Spline_Interpolation section on how cubic splines work with clamped end conditions.
Chapra 18.014
Pay attention to how multidimensional interpolation works at Python:Interpolation#2-D_Interpolation and note that the documentation at scipy is still a little off. Follow the example on Pundit.