package
0.0.0-20241023150245-c8bbc672ef66
Repository: https://github.com/aclements/go-moremath.git
Documentation: pkg.go.dev
# Functions
LinearLeastSquares computes the least squares fit for the function
f(x) = Β₀terms₀(x) + Β₁terms₁(x) + ..
LOESS computes the locally-weighted least squares polynomial regression to the data (xs[i], ys[i]).
PolynomialRegression performs a least squares regression with a polynomial of the given degree.
# Structs
PolynomialRegressionResult is the resulting polynomial from a PolynomialRegression.