本文簡要介紹 python 語言中 numpy.polynomial.hermite_e.hermevander
的用法。
用法:
polynomial.hermite_e.hermevander(x, deg)
Pseudo-Vandermonde 給定度數的矩陣。
返回度數的pseudo-Vandermonde 矩陣度和采樣點x. pseudo-Vandermonde 矩陣定義為
其中 0 <= i <= 度。 V 的前導索引索引 x 的元素,最後一個索引是 HermiteE 多項式的次數。
如果c是長度係數的一維數組n + 1和V是數組
V = hermevander(x, n)
, 然後np.dot(V, c)
和hermeval(x, c)
在四舍五入之前是相同的。這種等價性對於最小二乘擬合和大量相同度數和樣本點的HermiteE 係列的評估都很有用。- x: array_like
點數組。 dtype 轉換為 float64 或 complex128,具體取決於是否有任何元素是複雜的。如果 x 是標量,則將其轉換為一維數組。
- deg: int
結果矩陣的度數。
- vander: ndarray
pseudo-Vandermonde 矩陣。返回矩陣的形狀為
x.shape + (deg + 1,)
,其中最後一個索引是對應的HermiteE多項式的次數。 dtype 將與轉換後的相同x.
參數:
返回:
例子:
>>> from numpy.polynomial.hermite_e import hermevander >>> x = np.array([-1, 0, 1]) >>> hermevander(x, 3) array([[ 1., -1., 0., 2.], [ 1., 0., -1., -0.], [ 1., 1., 0., -2.]])
相關用法
- Python numpy hermite_e.hermeval用法及代碼示例
- Python numpy hermite_e.hermediv用法及代碼示例
- Python numpy hermite_e.hermefromroots用法及代碼示例
- Python numpy hermite_e.hermeline用法及代碼示例
- Python numpy hermite_e.hermeint用法及代碼示例
- Python numpy hermite_e.hermeadd用法及代碼示例
- Python numpy hermite_e.hermepow用法及代碼示例
- Python numpy hermite_e.hermetrim用法及代碼示例
- Python numpy hermite_e.hermezero用法及代碼示例
- Python numpy hermite_e.hermex用法及代碼示例
- Python numpy hermite_e.hermemulx用法及代碼示例
- Python numpy hermite_e.hermeone用法及代碼示例
- Python numpy hermite_e.hermesub用法及代碼示例
- Python numpy hermite_e.hermefit用法及代碼示例
- Python numpy hermite_e.hermedomain用法及代碼示例
- Python numpy hermite_e.herme2poly用法及代碼示例
- Python numpy hermite_e.hermeder用法及代碼示例
- Python numpy hermite_e.hermemul用法及代碼示例
- Python numpy hermite_e.hermeroots用法及代碼示例
- Python numpy hermite_e.poly2herme用法及代碼示例
- Python numpy hermite.hermfromroots用法及代碼示例
- Python numpy hermite.hermline用法及代碼示例
- Python numpy hermite.hermpow用法及代碼示例
- Python numpy hermite.hermx用法及代碼示例
- Python numpy hermite.hermmul用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.polynomial.hermite_e.hermevander。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。