ArimaCoefficients constructor

ArimaCoefficients({
  1. List<double>? autoRegressiveCoefficients,
  2. double? interceptCoefficient,
  3. List<double>? movingAverageCoefficients,
})

Implementation

ArimaCoefficients({
  this.autoRegressiveCoefficients,
  this.interceptCoefficient,
  this.movingAverageCoefficients,
});