Special.BesselJ Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

BesselJ(Double) Returns the Bessel function of the first kind of the specified real order.
BesselJ(Int32) Returns the Bessel function of the first kind of the specified integer order.
BesselJ(Double, Double) Evaluates the Bessel function of the first kind of real order.
BesselJ(Int32, Double) Evaluates the Bessel function of the first kind of integer order.

BesselJ(Double)

Returns the Bessel function of the first kind of the specified real order.
C#
public static Func<double, double> BesselJ(
	double nu
)

Parameters

nu  Double
 

Return Value

Func<Double, Double>

BesselJ(Int32)

Returns the Bessel function of the first kind of the specified integer order.
C#
public static Func<double, double> BesselJ(
	int n
)

Parameters

n  Int32
 

Return Value

Func<Double, Double>

BesselJ(Double, Double)

Evaluates the Bessel function of the first kind of real order.
C#
public static double BesselJ(
	double nu,
	double x
)

Parameters

nu  Double
A real number that specifies the order of the Bessel function.
x  Double
The value at which to evaluate the function.

Return Value

Double
The value of the Bessel function of the first kind of order nu at x.

BesselJ(Int32, Double)

Evaluates the Bessel function of the first kind of integer order.
C#
public static double BesselJ(
	int n,
	double x
)

Parameters

n  Int32
An integer that specifies the order of the Bessel function.
x  Double
The value at which to evaluate the function.

Return Value

Double
The value of the Bessel function of the first kind of order n at x.

See Also