C# Class Accord.Statistics.Kernels.Cauchy

Inheritance: Accord.Statistics.Kernels.KernelBase, IKernel, IRadialBasisKernel, ICloneable
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Cauchy ( double sigma ) : System

Constructs a new Cauchy Kernel.

Clone ( ) : object

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

Function ( double z ) : double

Cauchy Kernel Function

Function ( double x, double y ) : double

Cauchy Kernel Function

Method Details

Cauchy() public method

Constructs a new Cauchy Kernel.
public Cauchy ( double sigma ) : System
sigma double The value for sigma.
return System

Clone() public method

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

Function() public method

Cauchy Kernel Function
public Function ( double z ) : double
z double Distance z in input space.
return double

Function() public method

Cauchy Kernel Function
public Function ( double x, double y ) : double
x double Vector x in input space.
y double Vector y in input space.
return double