Click or drag to resize

SimpleRegressionFit(Double, Double) Method

Least-Squares fitting the points (x,y) to a line y : x -> a+b*x, returning its best fitting parameters as (a, b) tuple, where a is the intercept and b the slope.

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

Parameters

x  Double
Predictor (independent)
y  Double
Response (dependent)

Return Value

ValueTupleDouble, Double

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

See Also