本文簡要介紹 python 語言中 numpy.roots
的用法。
用法:
numpy.roots(p)
返回具有在 p 中給出的係數的多項式的根。
注意
這構成了舊多項式 API 的一部分。從版本 1.4 開始,首選在
numpy.polynomial
中定義的新多項式 API。可以在過渡指南中找到差異摘要。rank-1 數組 p 中的值是多項式的係數。如果 p 的長度為 n+1,則多項式說明為:
p[0] * x**n + p[1] * x**(n-1) + ... + p[n-1]*x + p[n]
- p: array_like
多項式係數的 Rank-1 數組。
- out: ndarray
包含多項式根的數組。
- ValueError
當 p 無法轉換為 rank-1 數組時。
參數:
返回:
拋出:
注意:
該算法依賴於計算伴隨矩陣 [1] 的特征值。
參考:
R. A. Horn 和 C. R. Johnson,矩陣分析。英國劍橋:劍橋大學出版社,1999 年,第 146-7 頁。
1:
例子:
>>> coeff = [3.2, 2, 1] >>> np.roots(coeff) array([-0.3125+0.46351241j, -0.3125-0.46351241j])
相關用法
- Python numpy roll用法及代碼示例
- Python numpy rollaxis用法及代碼示例
- Python numpy row_stack用法及代碼示例
- Python numpy rot90用法及代碼示例
- Python numpy recarray.dot用法及代碼示例
- Python numpy random.mtrand.RandomState.wald用法及代碼示例
- Python numpy recarray.itemset用法及代碼示例
- Python numpy random.mtrand.RandomState.multivariate_normal用法及代碼示例
- Python numpy random.standard_exponential用法及代碼示例
- Python numpy recarray.view用法及代碼示例
- Python numpy random.mtrand.RandomState.gumbel用法及代碼示例
- Python numpy random.mtrand.RandomState.multinomial用法及代碼示例
- Python numpy random.rand用法及代碼示例
- Python numpy random.mtrand.RandomState.logistic用法及代碼示例
- Python numpy random.mtrand.RandomState.shuffle用法及代碼示例
- Python numpy random.triangular用法及代碼示例
- Python numpy recarray.tolist用法及代碼示例
- Python numpy recarray.setflags用法及代碼示例
- Python numpy random.noncentral_f用法及代碼示例
- Python numpy recarray.flat用法及代碼示例
- Python numpy random.mtrand.RandomState.poisson用法及代碼示例
- Python numpy recarray用法及代碼示例
- Python numpy recarray.sort用法及代碼示例
- Python numpy random.lognormal用法及代碼示例
- Python numpy random.mtrand.RandomState.seed用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.roots。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。