本文簡要介紹 python 語言中 numpy.polynomial.chebyshev.chebder
的用法。
用法:
polynomial.chebyshev.chebder(c, m=1, scl=1, axis=0)
區分切比雪夫級數。
返回切比雪夫級數係數c差異化的m時間一起軸。每次迭代時,結果都會乘以scl(比例因子用於變量的線性變化)。參數c是沿每個軸從低到高的係數數組,例如,[1,2,3] 表示係列
1*T_0 + 2*T_1 + 3*T_2
而 [[1,2],[1,2]] 表示1*T_0(x)*T_0(y) + 1*T_1(x)*T_0(y) + 2*T_0(x)*T_1(y) + 2*T_1(x)*T_1(y)
如果軸 = 0 是x
和軸= 1 是y
.- c: array_like
切比雪夫級數係數數組。如果 c 是多維的,則不同的軸對應於不同的變量,每個軸的度數由相應的索引給出。
- m: 整數,可選
所取導數的數量必須是非負的。 (默認值:1)
- scl: 標量,可選
每個微分乘以scl。最終結果是乘以
scl**m
。這用於變量的線性變化。 (默認值:1)- axis: 整數,可選
求導數的軸。 (默認值:0)。
- der: ndarray
Chebyshev 級數的導數。
參數:
返回:
注意:
一般來說,C-series的微分結果需要“reprojected”到C-series基組上。因此,通常,此函數的結果是“unintuitive,”,盡管它是正確的;請參閱下麵的示例部分。
例子:
>>> from numpy.polynomial import chebyshev as C >>> c = (1,2,3,4) >>> C.chebder(c) array([14., 12., 24.]) >>> C.chebder(c,3) array([96.]) >>> C.chebder(c,scl=-1) array([-14., -12., -24.]) >>> C.chebder(c,2,-1) array([12., 96.])
相關用法
- Python numpy chebyshev.chebdiv用法及代碼示例
- Python numpy chebyshev.chebdomain用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chebyshev.cheb2poly用法及代碼示例
- Python numpy chebyshev.chebx用法及代碼示例
- Python numpy chebyshev.chebmul用法及代碼示例
- Python numpy chebyshev.chebroots用法及代碼示例
- Python numpy chebyshev.chebtrim用法及代碼示例
- Python numpy chebyshev.chebone用法及代碼示例
- Python numpy chebyshev.chebint用法及代碼示例
- Python numpy chebyshev.chebadd用法及代碼示例
- Python numpy chebyshev.chebline用法及代碼示例
- Python numpy chebyshev.chebfromroots用法及代碼示例
- Python numpy chebyshev.chebfit用法及代碼示例
- Python numpy chebyshev.chebzero用法及代碼示例
- Python numpy chebyshev.chebpow用法及代碼示例
- Python numpy chebyshev.chebmulx用法及代碼示例
- Python numpy chebyshev.chebinterpolate用法及代碼示例
- Python numpy chebyshev.poly2cheb用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy chararray.setflags用法及代碼示例
- Python numpy chararray.flat用法及代碼示例
- Python numpy chararray.strides用法及代碼示例
- Python numpy chararray.view用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.polynomial.chebyshev.chebder。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。