StudentDistribution constructor

const StudentDistribution(
  1. double dof
)

A Student's t-distribution with degrees of freedom ν.

Implementation

const StudentDistribution(this.dof) : assert(dof > 0, 'dof > 0');