Special.Bessel J Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Bessel | Returns the Bessel function of the first kind of the specified real order. |
Bessel | Returns the Bessel function of the first kind of the specified integer order. |
Bessel | Evaluates the Bessel function of the first kind of real order and complex argument. |
Bessel | Evaluates the Bessel function of the first kind of real order. |
Bessel | 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.
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.
public static Func<double, double> BesselJ(
int n
)
Parameters
- n Int32
Return Value
Func<Double, Double>BesselJ(Double, Complex<Double>)
Evaluates the Bessel function of the first kind of real order and complex argument.
public static Complex<double> BesselJ(
double nu,
Complex<double> z
)
Parameters
- nu Double
- A real number that specifies the order of the Bessel function.
- z Complex<Double>
- The value at which to evaluate the function.
Return Value
Complex<Double>The value of the Bessel function of the first kind of order nu at z.
BesselJ(Double, Double)
Evaluates the Bessel function of the first kind of real order.
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
DoubleThe 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.
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
DoubleThe value of the Bessel function of the first kind of order n at x.