mars.tensor.special.yn#

mars.tensor.special.yn(n, x, **kwargs)[源代码]#

Bessel function of the second kind of integer order and real argument.

参数
  • n (array_like) – Order (integer).

  • z (array_like) – Argument (float).

返回

Y – Value of the Bessel function, \(Y_n(x)\).

返回类型

ndarray

备注

Wrapper for the Cephes 1 routine yn.

The function is evaluated by forward recurrence on n, starting with values computed by the Cephes routines y0 and y1. If n = 0 or 1, the routine for y0 or y1 is called directly.

参见

yv

For real order and real or complex argument.

引用

1

Cephes Mathematical Functions Library, http://www.netlib.org/cephes/