Click or drag to resize

LinearFitBySvd Class

Performs a linear least-squares fit to a given function base using singular value decomposition (SVD).
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.RegressionLinearFitBySvd

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class LinearFitBySvd

The LinearFitBySvd type exposes the following members.

Constructors
Properties
 NameDescription
Public propertyAdjustedRSquaredGives the adjusted coefficient of determination.
Public propertyConditionNumber Gets the condition number.
Public propertyCovariances Gets the variance-covariance matrix of the fitted parameters.
Public propertyEstimatedVariance Gets the estimated residual mean square (also called sigma square).
Public propertyNumberOfData Gets the number of data points used by the fit.
Public propertyNumberOfParameter Gets the number of parameters of the fit.
Public propertyParameter Gets the fitted parameters such that y = Σ(parameter[i] * functionBase[i]).
Public propertyPredictedValues Gets the predicted dependent values ŷ[i].
Public propertyRegressionCorrectedSumOfSquares Gets the regression corrected sum of squares, i.e. Σ(ŷi - ȳ)^2.
Public propertyResidualSumOfSquares Gets the residual sum of squares (RSS) of the fit, i.e. Σ(yi - ŷi)^2.
Public propertyResidualValues Gets the residual values defined as y[i] - ŷ[i].
Public propertyRSquared Gets the coefficient of determination (R²).
Public propertySigma Gets the standard error of regression.
Public propertyTotalCorrectedSumOfSquares Gets the total corrected sum of squares of y, i.e. Σ(yi - ȳ)^2.
Top
Methods
 NameDescription
Public methodCalculate Fits a data set linearly to a given design matrix.
Public methodStatic memberCorrectedSumOfSquares Calculates the corrected sum of squares of length elements in x, starting at index start.
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodExternallyStudentizedResidual Returns the i-th studentized residual, with the i-th observation removed from the model.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodStatic memberFitPolymomial Fits data provided as x and y sequences with a polynomial base.
Public methodStatic memberFitPolymomialDestructive Fits data provided as x and y arrays with a polynomial base.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodStatic memberGetPolynomialFunctionBase Gets a default polynomial function base with intercept, i.e. y = a + b*x + c*x*x + ....
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodStatic memberMean Calculates the mean value of length elements in x, starting at index start.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodPredictionVariance Returns the variance of the prediction of the i-th y-value.
Public methodPRESSResidual Returns the i-th PRESS residual.
Public methodStandardErrorOfParameter Gets the estimated standard error of parameter i.
Public methodStudentizedResidual Returns the i-th studentized residual.
Public methodTofParameter Gets the absolute t-statistic of parameter i.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also