rStudentT

Function to generate random observation from a Student's t-distribution.

  1. T rStudentT(T shape)
    T
    rStudentT
    (
    T = double
    )
    ()
    if (
    isFloatingPoint!T
    )
  2. T rStudentT(UniformRNG rng, T shape)

Examples

auto x = rStudentT(2.0) * 5;

Meta