$(WIKI_D Student's_t).
auto rv = studentTVar(10.0); static assert(isRandomVariable!(typeof(rv))); import mir.random.engine; auto x = rv(rne);
import mir.random.engine; Random* gen = threadLocalPtr!Random; auto rv = StudentTVariable!double(10); auto x = rv(gen);
See Implementation
$(WIKI_D Student's_t).