Click or drag to resize
Accord.NET (logo)

MultivariateKernelRegression Class

Multivariate non-linear regression using Kernels.
Inheritance Hierarchy
SystemObject
  Accord.MachineLearningTransformBaseDouble, Double
    Accord.MachineLearningMultipleTransformBaseDouble, Double
      Accord.Statistics.Models.RegressionMultivariateKernelRegressionIKernel
        Accord.Statistics.Models.RegressionMultivariateKernelRegression

Namespace:  Accord.Statistics.Models.Regression
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[SerializableAttribute]
public class MultivariateKernelRegression : MultivariateKernelRegression<IKernel>
Request Example View Source

The MultivariateKernelRegression type exposes the following members.

Constructors
  NameDescription
Public methodMultivariateKernelRegression
Initializes a new instance of the MultivariateKernelRegression class
Top
Properties
  NameDescription
Public propertyBasisVectors
Gets or sets the original input data that is needed to compute the kernel (Gram) matrices for the regression.
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyFeatureGrandMean
Gets or sets the grand mean of the data in feature space (to center samples).
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyFeatureMeans
Gets or sets the means of the data in feature space (to center samples).
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyIntercept Obsolete.
Gets or sets the intercept value for the regression.
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyKernel
Gets or sets the kernel function.
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyMeans
Gets or sets the mean values (to be subtracted from samples).
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyNumberOfInputs
Gets the number of inputs accepted by the model.
(Inherited from TransformBaseTInput, TOutput.)
Public propertyNumberOfOutputs
Gets the number of outputs generated by the model.
(Inherited from TransformBaseTInput, TOutput.)
Public propertyStandardDeviations
Gets or sets the standard deviations (to be divided from samples).
(Inherited from MultivariateKernelRegressionTKernel.)
Public propertyWeights
Gets or sets the linear weights of the regression model. The intercept term is not stored in this vector, but is instead available through the Intercept property.
(Inherited from MultivariateKernelRegressionTKernel.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTransform(TInput)
Applies the transformation to an input, producing an associated output.
(Inherited from MultipleTransformBaseTInput, TOutput.)
Public methodTransform(TInput)
Applies the transformation to a set of input vectors, producing an associated set of output vectors.
(Inherited from MultipleTransformBaseTInput, TOutput.)
Public methodTransform(TInput, TOutput)
Applies the transformation to an input, producing an associated output.
(Inherited from MultipleTransformBaseTInput, TOutput.)
Public methodTransform(Double, Double)
Applies the transformation to an input, producing an associated output.
(Inherited from MultivariateKernelRegressionTKernel.)
Top
Extension Methods
  NameDescription
Public Extension MethodHasMethod
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.)
Public Extension MethodIsEqual
Compares two objects for equality, performing an elementwise comparison if the elements are vectors or matrices.
(Defined by Matrix.)
Public Extension MethodTo(Type)Overloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Public Extension MethodToTOverloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Top
See Also