InverseGammaDistribution constructor

const InverseGammaDistribution(
  1. double shape,
  2. double scale
)

An inverse gamma distribution with parameters shape α and scale β.

Implementation

const InverseGammaDistribution(this.shape, this.scale)
    : assert(shape > 0, 'shape > 0'),
      assert(scale > 0, 'scale > 0');