Simple |
[Missing <summary> documentation for "T:Altaxo.Calc.LinearRegression.SimpleRegression"]
public static class SimpleRegression
The SimpleRegression type exposes the following members.
Name | Description | |
---|---|---|
Fit(IEnumerableTupleDouble, Double) | 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. | |
Fit(IEnumerableValueTupleDouble, Double) | 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. | |
Fit(Double, Double) | 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. | |
FitThroughOrigin(IEnumerableTupleDouble, Double) | Least-Squares fitting the points (x,y) to a line y : x -> b*x, returning its best fitting parameter b, where the intercept is zero and b the slope. | |
FitThroughOrigin(Double, Double) | Least-Squares fitting the points (x,y) to a line y : x -> b*x, returning its best fitting parameter b, where the intercept is zero and b the slope. |