Special.SphericalBesselJ Method

Definition

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

Overload List

SphericalBesselJ(Double, Double) Evaluates the spherical Bessel function of the first kind of integer order.
SphericalBesselJ(Int32, Double) Evaluates the spherical Bessel function of the first kind.

SphericalBesselJ(Double, Double)

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

Parameters

n  Double
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.

SphericalBesselJ(Int32, Double)

Evaluates the spherical Bessel function of the first kind.
C#
public static double SphericalBesselJ(
	int n,
	double x
)

Parameters

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

Return Value

Double
The spherical Bessel function of the first kind.

See Also