Python numpy.polyval()
numpy.polyval(p, x)方法在特定的值上对多项式进行评估。
如果’N’是多项式’p’的长度,那么这个函数返回值为
参数 :
p :[array_like or poly1D] 多项式系数按照幂的递减顺序给出。如果第二个参数(根)被设置为True,那么数组值就是多项式方程的根。
**例如 **poly1d(3, 2, 6) = 3x 2 (2x + 6)。
x :[array_like or poly1D] 一个数字,一个数组,用于评估’p’。
返回:多项式的评估值。
代码 :解释polyval()的Python代码
# Python code explaining
# numpy.polyval()
# importing libraries
import numpy as np
import pandas as pd
# Constructing polynomial
p1 = np.poly1d([1, 2])
p2 = np.poly1d([4, 9, 5, 4])
print ("P1 : ", p1)
print ("\n p2 : \n", p2)
# Solve for x = 2
print ("\n\np1 at x = 2 : ", p1(2))
print ("p2 at x = 2 : ", p2(2))
a = np.polyval([1, 2], 2)
b = np.polyval([4, 9, 5, 4], 2)
print ("\n\nUsing polyval")
print ("p1 at x = 2 : ", a)
print ("p2 at x = 2 : ", b)
c = np.polyval(np.poly1d([4, 9, 5, 4]), np.poly1d(2))
print ("\nc : ", c)