C# 클래스 YAMP.Numerics.Bessel

This class contains bessel functions.
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
j0 ( double x ) : double

Returns the Bessel function of order 0 of the specified number.

j1 ( double x ) : double

Returns the Bessel function of order 1 of the specified number.

jn ( int n, double x ) : double

Returns the Bessel function of order n of the specified number.

y0 ( double x ) : double

Returns the Bessel function of the second kind, of order 0 of the specified number.

y1 ( double x ) : double

Returns the Bessel function of the second kind, of order 1 of the specified number.

yn ( int n, double x ) : double

Returns the Bessel function of the second kind, of order n of the specified number.

메소드 상세

j0() 공개 정적인 메소드

Returns the Bessel function of order 0 of the specified number.
public static j0 ( double x ) : double
x double x
리턴 double

j1() 공개 정적인 메소드

Returns the Bessel function of order 1 of the specified number.
public static j1 ( double x ) : double
x double x
리턴 double

jn() 공개 정적인 메소드

Returns the Bessel function of order n of the specified number.
public static jn ( int n, double x ) : double
n int Order
x double x
리턴 double

y0() 공개 정적인 메소드

Returns the Bessel function of the second kind, of order 0 of the specified number.
public static y0 ( double x ) : double
x double x
리턴 double

y1() 공개 정적인 메소드

Returns the Bessel function of the second kind, of order 1 of the specified number.
public static y1 ( double x ) : double
x double x
리턴 double

yn() 공개 정적인 메소드

Returns the Bessel function of the second kind, of order n of the specified number.
public static yn ( int n, double x ) : double
n int Order
x double x
리턴 double