Polynomials

原文:https://docs.scipy.org/doc/numpy/reference/routines.polynomials.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

Polynomials in NumPy can be created, manipulated, and even fitted using the Using the Convenience Classes of the numpy.polynomial package, introduced in NumPy 1.4.

在NumPy 1.4之前,numpy.poly1d是选择的类,它仍然可用,以保持向后兼容性。然而,较新的多项式包比numpy.poly1d更完整,其便利类在numpy环境中表现更好。因此,建议对新编码使用多项式。

Transition notice

多项式包中的各种例程都处理其系数从零度向上,即Poly1d约定的逆序的系列。记住这一点的简单方法是索引对应于度,即coef [i]是度i项的系数。