Newton interpolation --python achieve

from tabulate import tabulate
import sympy


"""
牛顿插值法
"""


class NewtonInterpolation:
    def __init__(self, x: list, y: list):
        self.Xi = x
        self.

Guess you like

Origin blog.csdn.net/zjbyough/article/details/103352789