Click or drag to resize

FitMultiDimWeighted Method

Weighted Least-Squares fitting the points (X,y) = ((x0,x1,..,xk),y) and weights w to a linear surface y : X -> p0*x0 + p1*x1 + ... + pk*xk, returning its best fitting parameters as [p0, p1, p2, ..., pk] array.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] MultiDimWeighted(
	double[][] x,
	double[] y,
	double[] w
)

Parameters

x  Double

[Missing <param name="x"/> documentation for "M:Altaxo.Calc.Fit.MultiDimWeighted(System.Double[][],System.Double[],System.Double[])"]

y  Double

[Missing <param name="y"/> documentation for "M:Altaxo.Calc.Fit.MultiDimWeighted(System.Double[][],System.Double[],System.Double[])"]

w  Double

[Missing <param name="w"/> documentation for "M:Altaxo.Calc.Fit.MultiDimWeighted(System.Double[][],System.Double[],System.Double[])"]

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Calc.Fit.MultiDimWeighted(System.Double[][],System.Double[],System.Double[])"]

See Also