Utsav Python 3
Utsav Python 3
LAB EVALUATION - 3
1. Aim/Objective:
You are given the following data points (1,2),(2,5),(4,3),(5,10). Use interpolation to estimate value of
y at x = 8. Include the full working out and print the interpolated result.
2. Source Code:
x_new = 8
y_new = poly_interpolation(x_new)
3. Output:
4. Learning Outcome: