27#ifndef expModGaussian_hpp
28#define expModGaussian_hpp
30#include <boost/math/tools/minima.hpp>
50template <
typename realT>
57 return ( lambda / 2 ) *
exp( ( lambda / 2 ) * ( 2 * mu + lambda * sigma * sigma - 2 * x ) ) *
58 std::erfc( ( mu + lambda * sigma * sigma - x ) / (
root_two<realT>() * sigma ) );
71template <
typename realT>
76 return mu + 1.0 / lambda;
89template <
typename realT>
94 return sigma * sigma + 1.0 / ( lambda * lambda );
97template <
typename realT>
104 realT operator()(
const realT &x )
120template <
typename realT>
129 std::cerr <<
mn <<
" " <<
sd <<
"\n";
139 std::pair<realT, realT>
brack;
140 brack = boost::math::tools::brent_find_minima<emgModeFunc<realT>, realT>(
141 mf,
mn - 2 *
sd,
mn + 2 *
sd, std::numeric_limits<realT>::digits,
maxit );
142 std::cerr <<
brack.first <<
" " <<
brack.second <<
" " <<
maxit <<
"\n";
148 std::cerr <<
"expModGaussianMode: No mode found\n";
149 return std::numeric_limits<realT>::quiet_NaN();
realT expModGaussianVariance(realT sigma, realT lambda)
The Variance of the Exponentially Modified Gaussian.
realT expModGaussian(realT x, realT mu, realT sigma, realT lambda)
The Exponentially Modified Gaussian at a point.
realT expModGaussianMode(realT mu, realT sigma, realT lambda)
The Mode of the Exponentially Modified Gaussian.
realT expModGaussianMean(realT mu, realT lambda)
The Mean of the Exponentially Modified Gaussian.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.