C# 클래스 numl.Math.Kernels.PolyKernel

Polynomial kernel of arbitrary dimension.
상속: IKernel
파일 보기 프로젝트 열기: sethjuarez/numl

공개 메소드들

메소드 설명
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