Fit.Line 是否使用最小二乘法
Does Fit.Line use least squares
方法Fit.Line - 它使用什么算法来确定参数?希望最小二乘。
检查文档。
https://numerics.mathdotnet.com/api/MathNet.Numerics/Fit.htm#Line
"Least-Squares 将点 (x,y) 拟合到直线 y : x -> a+b*x,返回其最佳拟合参数作为 [a, b] 数组,其中 a 是拦截和 b 斜率。"
方法Fit.Line - 它使用什么算法来确定参数?希望最小二乘。
检查文档。 https://numerics.mathdotnet.com/api/MathNet.Numerics/Fit.htm#Line
"Least-Squares 将点 (x,y) 拟合到直线 y : x -> a+b*x,返回其最佳拟合参数作为 [a, b] 数组,其中 a 是拦截和 b 斜率。"