C# Class Accord.Statistics.Distributions.DensityKernels.UniformKernel

Inheritance: IRadiallySymmetricKernel
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Derivative ( double x ) : double

Computes the derivative of the kernel profile function.

Function ( double x ) : double

Computes the kernel density function.

Profile ( double x ) : double

Computes the kernel profile function.

UniformKernel ( ) : System

Initializes a new instance of the UniformKernel class.

UniformKernel ( double constant ) : System

Initializes a new instance of the UniformKernel class.

Method Details

Derivative() public method

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

Function() public method

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

Profile() public method

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

UniformKernel() public method

Initializes a new instance of the UniformKernel class.
public UniformKernel ( ) : System
return System

UniformKernel() public method

Initializes a new instance of the UniformKernel class.
public UniformKernel ( double constant ) : System
constant double The normalization constant c.
return System