public class Bessel
extends java.lang.Object
| Constructor | Description |
|---|---|
Bessel() |
| Modifier and Type | Method | Description |
|---|---|---|
static double |
bessel0(double x) |
|
static double |
bessel1(double x) |
|
static double |
besseln(int n,
double x) |
Computes the Bessel function of order n at x.
|
static double |
besselnDerivative(int n,
double x) |
Computes the derivative of the Bessel function of order n at x.
|
static double[] |
besselnZeros(int n,
int nt) |
Computes nt zeroes of the n-th order Bessel function
|
static Function |
getDerivative(int n) |
Gets the derivative of the Bessel function with the given order.
|
static Function |
getFunction(int n) |
Gets the Bessel function with the given order.
|
public static Function getFunction(int n)
public static Function getDerivative(int n)
public static double besseln(int n,
double x)
n - x - public static double besselnDerivative(int n,
double x)
n - x - public static double[] besselnZeros(int n,
int nt)
n - nt - public static double bessel0(double x)
public static double bessel1(double x)