The OpenD Programming Language

mir.stat.distribution.students_t

This module contains algorithms for the Student's t Distribution.

Members

Functions

studentsTCCDF
T studentsTCCDF(T x, T nu)

Computes the Student's t complementary cumulative distribution function (CCDF).

studentsTCCDF
T studentsTCCDF(T x, T nu, T mean, T stdDev)

Ditto, with location and scale parameters (by standardizing x).

studentsTCDF
T studentsTCDF(T x, T nu)

Computes the Student's t cumulative distribution function (CDF).

studentsTCDF
T studentsTCDF(T x, T nu, T mean, T stdDev)

Ditto, with location and scale parameters (by standardizing x).

studentsTInvCDF
T studentsTInvCDF(T p, T nu)

Computes the Student's t inverse cumulative distribution function (InvCDF).

studentsTInvCDF
T studentsTInvCDF(T p, T nu, T mean, T stdDev)

Ditto, with location and scale parameters (by standardizing x).

studentsTLPDF
T studentsTLPDF(T x, T nu)

Computes the Student's t log probability density function (LPDF).

studentsTLPDF
T studentsTLPDF(T x, T nu, T mean, T stdDev)

Ditto, with location and scale parameters (by standardizing x).

studentsTPDF
T studentsTPDF(T x, T nu)

Computes the Student's t probability density function (PDF).

studentsTPDF
T studentsTPDF(T x, T nu, T mean, T stdDev)

Ditto, with location and scale parameters (by standardizing x).

Meta

Authors

John Michael Hall