GMM constructor

GMM(
  1. int k, {
  2. int maxIter = 100,
  3. double tol = 1e-4,
})

Implementation

GMM(this.k, {this.maxIter = 100, this.tol = 1e-4}) {
  if (k <= 0) throw ArgumentError('k must be positive');
}