我必须在 Python 中为我正在做的项目制作拉格朗日多项式。我正在做一种重心风格,以避免使用显式的 for 循环,而不是使用牛顿的分差风格。我遇到的问题是我需要将除以零,但是 Python(或者可能是 numpy)只是让它成为警告而不是正常的异常。
所以,我需要知道如何处理这个警告,就好像它是一个异常一样。我在这个网站上找到的与此相关的问题没有以我需要的方式得到回答。这是我的代码:
import numpy as np
import matplotlib.pyplot as plt
import warnings
class Lagrange:
def __init__(self, xPts, yPts):
self.xPts = np.array(xPts)
self.yPts = np.array(yPts)
self.degree = len(xPts)-1
self.weights = np.array([np.product([x_j - x_i for x_j in xPts if x_j != x_i]) for x_i in xPts])
def __call__(self, x):
warnings.filterwarnings("error")
try:
bigNumerator = np.product(x - self.xPts)
numerators = np.array([bigNumerator/(x - x_j) for x_j in self.xPts])
return sum(numerators/self.weights*self.yPts)
except Exception, e: # Catch division by 0. Only possible in 'numerators' array
return yPts[np.where(xPts == x)[0][0]]
L = Lagrange([-1,0,1],[1,0,1]) # Creates quadratic poly L(x) = x^2
L(1) # This should catch an error, then return 1.
执行此代码时,我得到的输出是:
Warning: divide by zero encountered in int_scalars
这就是我想要捕捉的警告。它应该出现在列表理解中。