LinearFitBySvdCorrectedSumOfSquares Method |
Calculates the corrected sum of squares of length elements of array x starting from index start. The corrected sum
of squares is defined as sum of squares of the elements minus their mean value.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double CorrectedSumOfSquares(
IReadOnlyList<double> x,
double mean,
int start,
int length
)
Parameters
- x IReadOnlyListDouble
- Array of values.
- mean Double
- Mean value of the values.
- start Int32
- Starting index.
- length Int32
- Number of elements used for calculation.
Return Value
Double[Missing <returns> documentation for "M:Altaxo.Calc.Regression.LinearFitBySvd.CorrectedSumOfSquares(System.Collections.Generic.IReadOnlyList{System.Double},System.Double,System.Int32,System.Int32)"]
See Also