studentTVar

studentTVar
(
T
)
(
in T nu
)
if (
isFloatingPoint!T
)

Examples

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);