We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e3b8a commit b90be7eCopy full SHA for b90be7e
1 file changed
src/Numerics/Fit.cs
@@ -42,7 +42,7 @@ public static class Fit
42
{
43
/// <summary>
44
/// Least-Squares fitting the points (x,y) to a line y : x -> a+b*x,
45
- /// returning its best fitting parameters as [a, b] array,
+ /// returning its best fitting parameters as (a, b) tuple,
46
/// where a is the intercept and b the slope.
47
/// </summary>
48
public static (double A, double B) Line(double[] x, double[] y)
0 commit comments