Click or drag to resize

IRegressionCalculation Interface

Interface for classes used by class LinearRegression to calculate regression parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public interface IRegressionCalculation : ICloneable

The IRegressionCalculation type exposes the following members.

Properties
 NameDescription
Public propertyRank Returns the rank if it was calculated as a byproduct of the parameter calculation.
Public propertyRankAvailable Returns true if the rank was calculated as a byproduct of the parameter calculation; otherwise, false.
Public propertyXTXInv Gets the matrix formed by taking the inverse of the product of the transpose of the regression matrix with itself, if available.
Public propertyXTXInvAvailable Gets a boolean value indicating whether or not the matrix formed by taking the inverse of the product of the transpose of the regression matrix with itself is available.
Top
Methods
 NameDescription
Public methodCalculateParameters(DoubleMatrix, DoubleVector) Calculates the regression parameters for the given matrix of independent values and the given vector of dependent values.
Public methodCalculateParameters(DoubleMatrix, DoubleVector, Boolean) Calculates the regression parameters for the given matrix of independent values and the given vector of dependent values.
Top
See Also