ElasticNetRegression constructor

ElasticNetRegression(
  1. Matrix A,
  2. ColumnMatrix b,
  3. double alpha,
  4. double l1Ratio, {
  5. DiagonalMatrix? W,
  6. EquationMethod method = EquationMethod.linear,
})

Implementation

ElasticNetRegression(super.A, super.b, this.alpha, this.l1Ratio,
    {super.W, super.method});