Python numpy.polydiv()

Python numpy.polydiv()

numpy.polydiv()方法对两个多项式的除法进行评估,并返回多项式除法的商和余数。

语法 : numpy.polydiv(p1, p2)
参数 :
p1 :[array_like or poly1D]分红多项式的系数。
p2 :[array_like or poly1D]除数多项式的系数。

返回:
q :[ndarray]商的系数。
r :[ndarray]余数的系数。

代码。解释polydiv()的Python代码

# Python code explaining 
# numpy.polydiv()
    
# 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) 

Python中的numpy.polydiv()

quotient, remainder = np.polydiv(p2, p1)
  
print("\n\nquotient  : ", quotient)
print("remainder : ", remainder)
print ("\n")

Python中的numpy.polydiv()

# Defining ndarray
x = np.array([1, 2])
y = np.array([4, 9, 5, 4])
  
quotient, remainder = np.polydiv(y, x)
  
print("quotient  : ", quotient)
print("remainder : ", remainder)

Python中的numpy.polydiv()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程