Special.BesselY0 Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

BesselY0(Complex<Double>) Evaluates the regular Bessel function of the second kind of order 0 for complex argument.
BesselY0(Double) Evaluates the regular Bessel function of the second kind of order 0.

BesselY0(Complex<Double>)

Evaluates the regular Bessel function of the second kind of order 0 for complex argument.
C#
public static Complex<double> BesselY0(
	Complex<double> z
)

Parameters

z  Complex<Double>
The value at which to evaluate the function.

Return Value

Complex<Double>
The regular Bessel function of the second kind of order 0.

BesselY0(Double)

Evaluates the regular Bessel function of the second kind of order 0.
C#
public static double BesselY0(
	double x
)

Parameters

x  Double
The value at which to evaluate the function.

Return Value

Double
The regular Bessel function of the second kind of order 0.

See Also