C# 클래스 Accord.Statistics.Distributions.DensityKernels.GaussianKernel

상속: IRadiallySymmetricKernel
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

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

Computes the derivative of the kernel profile function.

Function ( double x ) : double

Computes the kernel density function.

GaussianKernel ( double constant ) : System

Initializes a new instance of the GaussianKernel class.

GaussianKernel ( int dimension ) : System

Initializes a new instance of the GaussianKernel class.

Profile ( double x ) : double

Computes the kernel profile function.

메소드 상세

Derivative() 공개 메소드

Computes the derivative of the kernel profile function.
public Derivative ( double x ) : double
x double The point estimate x.
리턴 double

Function() 공개 메소드

Computes the kernel density function.
public Function ( double x ) : double
x double The input point.
리턴 double

GaussianKernel() 공개 메소드

Initializes a new instance of the GaussianKernel class.
public GaussianKernel ( double constant ) : System
constant double The normalization constant to use.
리턴 System

GaussianKernel() 공개 메소드

Initializes a new instance of the GaussianKernel class.
public GaussianKernel ( int dimension ) : System
dimension int The desired dimension d.
리턴 System

Profile() 공개 메소드

Computes the kernel profile function.
public Profile ( double x ) : double
x double The squared point estimate .
리턴 double