|
| template<typename T > |
| void | mckl::cdfnorm (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = (1 + \mathrm{erfc}(a_i / \sqrt{2})) / 2\). More...
|
| |
| template<typename T > |
| void | mckl::cdfnorminv (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \sqrt{2}\mathrm{erfc}^{-1}(2 - 2a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::erf (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \mathrm{erf}(a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::erfc (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \mathrm{erfc}(a_i) = \mathrm{erfc}(a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::erfcinv (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \mathrm{erfc}(a_i) = \mathrm{erfc}^{-1}(a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::erfinv (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \mathrm{erf}^{-1}(a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::lgamma (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \ln\Gamma(a_i)\). More...
|
| |
| template<typename T > |
| void | mckl::tgamma (std::size_t n, const T *a, T *y) |
| | For \(i=1,\ldots,n\), compute \(y_i = \Gamma(a_i)\). More...
|
| |