UPdfExponentialFunction constructor

const UPdfExponentialFunction({
  1. required List<double> domain,
  2. required List<double> c0,
  3. required List<double> c1,
  4. required double exponent,
  5. List<double>? range,
})

Implementation

const UPdfExponentialFunction({required this.domain, required this.c0, required this.c1, required this.exponent, this.range});