C# 클래스 Accord.Statistics.Kernels.Sparse.SparsePolynomial

상속: KernelBase, IKernel
파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Function ( double x, double y ) : double

Polynomial kernel function.

SparsePolynomial ( int degree ) : System

Constructs a new Polynomial kernel of a given degree.

SparsePolynomial ( int degree, double constant ) : System

Constructs a new Sparse Polynomial kernel of a given degree.

메소드 상세

Function() 공개 메소드

Polynomial kernel function.
public Function ( double x, double y ) : double
x double Vector x in input space.
y double Vector y in input space.
리턴 double

SparsePolynomial() 공개 메소드

Constructs a new Polynomial kernel of a given degree.
public SparsePolynomial ( int degree ) : System
degree int The polynomial degree for this kernel.
리턴 System

SparsePolynomial() 공개 메소드

Constructs a new Sparse Polynomial kernel of a given degree.
public SparsePolynomial ( int degree, double constant ) : System
degree int The polynomial degree for this kernel.
constant double The polynomial constant for this kernel. Default is 1.
리턴 System