C# Класс numl.Math.Kernels.PolyKernel

Polynomial kernel of arbitrary dimension.
Наследование: IKernel
Показать файл Открыть проект

Открытые методы

Метод Описание
Compute ( Matrix m ) : Matrix

Computes polynomial kernel of the specified degree (in Dimension)

Compute ( Vector v1, Vector v2 ) : double

Computes the polynomial kernel function between the two input vectors.

PolyKernel ( ) : System
PolyKernel ( double dimension ) : System

ctor.

Project ( Matrix m, Vector x ) : Vector

Projects vector into polynomial kernel space.

Описание методов

Compute() публичный Метод

Computes polynomial kernel of the specified degree (in Dimension)
public Compute ( Matrix m ) : Matrix
m Matrix Input Matrix.
Результат Matrix

Compute() публичный Метод

Computes the polynomial kernel function between the two input vectors.
public Compute ( Vector v1, Vector v2 ) : double
v1 numl.Math.LinearAlgebra.Vector Vector one.
v2 numl.Math.LinearAlgebra.Vector Vector two.
Результат double

PolyKernel() публичный Метод

public PolyKernel ( ) : System
Результат System

PolyKernel() публичный Метод

ctor.
public PolyKernel ( double dimension ) : System
dimension double Polynomial Kernel Dimension.
Результат System

Project() публичный Метод

Projects vector into polynomial kernel space.
public Project ( Matrix m, Vector x ) : Vector
m Matrix Polynomial Kernel Matrix.
x numl.Math.LinearAlgebra.Vector Vector in original space.
Результат numl.Math.LinearAlgebra.Vector