C# Class Accord.Statistics.Kernels.Power

Inheritance: IKernel
Show file Open project: accord-net/framework

Public Methods

Method Description
Clone ( ) : object

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

Function ( double z ) : double

Power Kernel Function

Function ( double x, double y ) : double

Power Kernel Function

Power ( double degree ) : System

Constructs a new Power Kernel.

Power ( int degree ) : System

Constructs a new Power Kernel.

Method Details

Clone() public method

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

Function() public method

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

Function() public method

Power 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

Power() public method

Constructs a new Power Kernel.
public Power ( double degree ) : System
degree double The kernel's degree.
return System

Power() public method

Constructs a new Power Kernel.
public Power ( int degree ) : System
degree int The kernel's degree.
return System