Numpy 的 roots(~)
方法返回给定多项式系数的根。
参数
1. p
| array-like
多项式的系数,从最高次到最低次。
返回值
包含输入多项式的根的 Numpy 数组。
例子
找到 的根:
np.roots([1, -5, 6])
array([3., 2.])
这意味着根是 x=3
和 x=2
,我们知道这是真的,因为:
相关用法
- Python NumPy roll方法用法及代码示例
- Python NumPy rot90方法用法及代码示例
- Python round()用法及代码示例
- Python round方法用法及代码示例
- Python random.getstate()用法及代码示例
- Python random.triangular()用法及代码示例
- Python Numpy recarray.tostring()用法及代码示例
- Python reduce()用法及代码示例
- Python response.status_code用法及代码示例
- Python Numpy recarray.tobytes()用法及代码示例
- Python string rpartition()用法及代码示例
- Python numpy random.mtrand.RandomState.randn用法及代码示例
- Python randint()用法及代码示例
- Python numpy random.mtrand.RandomState.rand用法及代码示例
- Python Numpy recarray.min()用法及代码示例
- Python response.request用法及代码示例
- Python repr方法用法及代码示例
- Python Numpy recarray.cumprod()用法及代码示例
- Python numpy random.mtrand.RandomState.pareto用法及代码示例
- Python re.compile用法及代码示例
- Python NumPy remainder方法用法及代码示例
- Python Django re_path用法及代码示例
- Python response.elapsed用法及代码示例
- Python numpy random.mtrand.RandomState.standard_normal用法及代码示例
- Python response.cookies用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | roots method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。