本文简要介绍 python 语言中 numpy.polysub
的用法。
用法:
numpy.polysub(a1, a2)
两个多项式的差(减法)。
注意
这构成了旧多项式 API 的一部分。从版本 1.4 开始,首选在
numpy.polynomial
中定义的新多项式 API。可以在过渡指南中找到差异摘要。给定两个多项式a1和a2, 返回
a1 - a2
.a1和a2可以是多项式系数的类似数组的序列(包括等于零的系数),或者numpy.poly1d对象。- a1, a2: 数组 或 poly1d
分别是被减数和减数多项式。
- out: ndarray 或 poly1d
差分多项式系数的数组或
poly1d
对象。
参数:
返回:
例子:
>>> np.polysub([2, 10, -2], [3, 10, -4]) array([-1, 0, 2])
相关用法
- Python numpy polyder用法及代码示例
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy polynomial.polyline用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy polyutils.as_series用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polyutils.getdomain用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
- Python numpy polyutils.mapparms用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polydiv用法及代码示例
- Python numpy polynomial.polyval用法及代码示例
- Python numpy polynomial.polysub用法及代码示例
- Python numpy poly1d用法及代码示例
- Python numpy polynomial.polyx用法及代码示例
- Python numpy polyint用法及代码示例
- Python numpy polyval用法及代码示例
- Python numpy polynomial.set_default_printstyle用法及代码示例
- Python numpy polymul用法及代码示例
- Python numpy polynomial.polytrim用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polysub。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。