OwensT Class |
Namespace: Accord.Math
Name | Description | |
---|---|---|
Function(Double, Double) |
Computes Owen's T function for arbitrary H and A.
| |
Function(Double, Double, Double) |
Owen's T function for a restricted range of parameters.
|
In mathematics, Owen's T function T(h, a), named after statistician Donald Bruce Owen, is defined by
1 a exp{-0.5 h²(1+x²) T(h, a) = ---- ∫ ------------------- dx 2π 0 1 + x²
The function T(h, a) gives the probability of the event (X > h and 0 < Y < aX) where X and Y are independent standard normal random variables. This function can be used to calculate bivariate normal distribution probabilities and, from there, in the calculation of multivariate normal distribution probabilities. It also frequently appears in various integrals involving Gaussian functions.
The code is based on the original FORTRAN77 version by Mike Patefield, David Tandy; and the C version created by John Burkardt. The original code for the C version can be found at http://people.sc.fsu.edu/~jburkardt/c_src/owens/owens.html and is valid under the LGPL.
References:
// Computes Owens' T function double t = OwensT.Function(h: 2, a: 42); // 0.011375065974089608