C# 클래스 Accord.Statistics.Kernels.Bessel

상속: Accord.Statistics.Kernels.KernelBase, IKernel, IRadialBasisKernel, ICloneable
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
Bessel ( int order, double sigma ) : System

Constructs a new Bessel Kernel.

Clone ( ) : object

Creates a new object that is a copy of the current instance.

Function ( double z ) : double

Bessel Kernel Function

Function ( double x, double y ) : double

Bessel Kernel Function

메소드 상세

Bessel() 공개 메소드

Constructs a new Bessel Kernel.
public Bessel ( int order, double sigma ) : System
order int The order for the Bessel function.
sigma double The value for sigma.
리턴 System

Clone() 공개 메소드

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
리턴 object

Function() 공개 메소드

Bessel Kernel Function
public Function ( double z ) : double
z double Distance z between two vectors in input space.
리턴 double

Function() 공개 메소드

Bessel Kernel Function
public Function ( double x, double y ) : double
x double Vector x in input space.
y double Vector y in input space.
리턴 double