Back to Scientific Computing (SciPy)
sp.special.y0
Bessel function of the second kind, order 0: Y₀(x)
Syntax
sp.special.y0(x)
Description
Bessel function of the second kind, order 0: Y₀(x) Also known as the Neumann function or Weber function. Y₀(x) is singular at x = 0 and is real for x > 0.
Parameters
| Name | Description |
|---|---|
| x | - Input value(s). Must be positive. Can be a number or array of numbers. |
Returns
Promise<number | number[]>