VOOZH about

URL: https://www.geeksforgeeks.org/python/numpy-polydiv-in-python/

⇱ numpy.polydiv() in Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

numpy.polydiv() in Python

Last Updated : 4 Dec, 2020
The numpy.polydiv() method evaluates the division of two polynomials and returns the quotient and remainder of the polynomial division.
Syntax : numpy.polydiv(p1, p2) Parameters : p1 : [array_like or poly1D]Coefficients of dividend polynomial. p2 : [array_like or poly1D]Coefficients of divisor polynomial. Return: q : [ndarray]Coefficients of quotient. r : [ndarray]Coefficients of remainder.
Code : Python code explaining polydiv() 👁 Image
👁 Image
Comment