Interface NormalEquationSolver


public interface NormalEquationSolver
Interface for classes that solve the normal equations locally.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.spark.ml.optim.NormalEquationSolution
    solve(double bBar, double bbBar, DenseVector abBar, DenseVector aaBar, DenseVector aBar)
    Solve the normal equations from summary statistics.
  • Method Details

    • solve

      org.apache.spark.ml.optim.NormalEquationSolution solve(double bBar, double bbBar, DenseVector abBar, DenseVector aaBar, DenseVector aBar)
      Solve the normal equations from summary statistics.