bundles / scipy latest / scipy / special / _basic / h2vp
function
scipy.special._basic:h2vp
source: /scipy/special/_basic.py :1208
Signature
def h2vp ( v , z , n = 1 ) Summary
Compute derivatives of Hankel function H2v(z) with respect to z.
Parameters
v: array_likeOrder of Hankel function
z: array_likeArgument at which to evaluate the derivative. Can be real or complex.
n: int, default 1Order of derivative. For 0 returns the Hankel function hankel2 itself.
Returns
: scalar or ndarrayValues of the derivative of the Hankel function.
Notes
The derivative is computed using the relation DLFM 10.6.7 [2].
Examples
Compute the Hankel function of the second kind of order 0 and its first two derivatives at 1.from scipy.special import h2vp
✓h2vp(0, 1, 0), h2vp(0, 1, 1), h2vp(0, 1, 2)
✗h2vp([0, 1, 2], 1, 1)
✗import numpy as np points = np.array([0.5, 1.5, 3.])✓
h2vp(0, points, 1)
✗See also
Aliases
-
scipy.special.h2vp