EGR 103/Fall 2021/Lab 12

From PrattWiki
Jump to navigation Jump to search

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.