本文簡要介紹 python 語言中 numpy.polynomial.hermite.hermder
的用法。
用法:
polynomial.hermite.hermder(c, m=1, scl=1, axis=0)
區分 Hermite 係列。
返回 Hermite 級數係數c差異化的m時間一起軸。每次迭代時,結果都會乘以scl(比例因子用於變量的線性變化)。參數c是沿每個軸從低到高的係數數組,例如,[1,2,3] 表示係列
1*H_0 + 2*H_1 + 3*H_2
而 [[1,2],[1,2]] 表示1*H_0(x)*H_0(y) + 1*H_1(x)*H_0(y) + 2*H_0(x)*H_1(y) + 2*H_1(x)*H_1(y)
如果軸 = 0 是x
和軸= 1 是y
.- c: array_like
Hermite 級數係數數組。如果 c 是多維的,則不同的軸對應於不同的變量,每個軸的度數由相應的索引給出。
- m: 整數,可選
所取導數的數量必須是非負的。 (默認值:1)
- scl: 標量,可選
每個微分乘以scl。最終結果是乘以
scl**m
。這用於變量的線性變化。 (默認值:1)- axis: 整數,可選
求導數的軸。 (默認值:0)。
- der: ndarray
Hermite 係列的導數。
參數:
返回:
注意:
通常,對 Hermite 級數進行微分的結果與對冪級數的相同運算不同。因此這個函數的結果可能是“unintuitive,”,盡管它是正確的;請參閱下麵的示例部分。
例子:
>>> from numpy.polynomial.hermite import hermder >>> hermder([ 1. , 0.5, 0.5, 0.5]) array([1., 2., 3.]) >>> hermder([-0.5, 1./2., 1./8., 1./12., 1./16.], m=2) array([1., 2., 3.])
相關用法
- Python numpy hermite.hermdiv用法及代碼示例
- Python numpy hermite.hermdomain用法及代碼示例
- Python numpy hermite.hermfromroots用法及代碼示例
- Python numpy hermite.hermline用法及代碼示例
- Python numpy hermite.hermpow用法及代碼示例
- Python numpy hermite.hermx用法及代碼示例
- Python numpy hermite.hermmul用法及代碼示例
- Python numpy hermite.herm2poly用法及代碼示例
- Python numpy hermite.hermsub用法及代碼示例
- Python numpy hermite.hermadd用法及代碼示例
- Python numpy hermite.hermfit用法及代碼示例
- Python numpy hermite.hermint用法及代碼示例
- Python numpy hermite.hermzero用法及代碼示例
- Python numpy hermite.hermone用法及代碼示例
- Python numpy hermite.hermtrim用法及代碼示例
- Python numpy hermite.hermvander用法及代碼示例
- Python numpy hermite.hermroots用法及代碼示例
- Python numpy hermite.hermval用法及代碼示例
- Python numpy hermite.hermmulx用法及代碼示例
- Python numpy hermite.poly2herm用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.polynomial.hermite.hermder。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。