Special.BesselJY Method

Evaluates the Bessel functions of the first and second kind of real order and complex argument.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static (Complex<double> , Complex<double> ) BesselJY(
	double nu,
	Complex<double> z
)

Parameters

nu  Double
A real number that specifies the order of the Bessel functions.
z  Complex<Double>
The value at which to evaluate the Bessel functions.

Return Value

ValueTuple<Complex<Double>, Complex<Double>>
A 2-tuple with the value of the Bessel function of the first and second kind of order nu at z.

See Also