|
Polynomial. Transform Method (Double[] , Int32, Double)
|
Projects an input point into feature space.
Namespace:
Accord.Statistics.Kernels
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic static double[] Transform(
double[] input,
int degree,
double constant
)
Public Shared Function Transform (
input As Double(),
degree As Integer,
constant As Double
) As Double()
Request Example
View SourceParameters
- input
- Type:System.Double[]
The input point to be projected into feature space. - degree
- Type: System.Int32
The Degree parameter of the kernel. - constant
- Type: System.Double
The Constant parameter of the kernel.
Return Value
Type:
Double[]
The feature space representation of the given
input point.
See Also