lognormal.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. // Copyright John Maddock 2006.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_STATS_LOGNORMAL_HPP
  6. #define BOOST_STATS_LOGNORMAL_HPP
  7. // http://www.itl.nist.gov/div898/handbook/eda/section3/eda3669.htm
  8. // http://mathworld.wolfram.com/LogNormalDistribution.html
  9. // http://en.wikipedia.org/wiki/Lognormal_distribution
  10. #include <boost/math/distributions/fwd.hpp>
  11. #include <boost/math/distributions/normal.hpp>
  12. #include <boost/math/special_functions/expm1.hpp>
  13. #include <boost/math/distributions/detail/common_error_handling.hpp>
  14. #include <utility>
  15. namespace boost{ namespace math
  16. {
  17. namespace detail
  18. {
  19. template <class RealType, class Policy>
  20. inline bool check_lognormal_x(
  21. const char* function,
  22. RealType const& x,
  23. RealType* result, const Policy& pol)
  24. {
  25. if((x < 0) || !(boost::math::isfinite)(x))
  26. {
  27. *result = policies::raise_domain_error<RealType>(
  28. function,
  29. "Random variate is %1% but must be >= 0 !", x, pol);
  30. return false;
  31. }
  32. return true;
  33. }
  34. } // namespace detail
  35. template <class RealType = double, class Policy = policies::policy<> >
  36. class lognormal_distribution
  37. {
  38. public:
  39. typedef RealType value_type;
  40. typedef Policy policy_type;
  41. lognormal_distribution(RealType l_location = 0, RealType l_scale = 1)
  42. : m_location(l_location), m_scale(l_scale)
  43. {
  44. RealType result;
  45. detail::check_scale("boost::math::lognormal_distribution<%1%>::lognormal_distribution", l_scale, &result, Policy());
  46. detail::check_location("boost::math::lognormal_distribution<%1%>::lognormal_distribution", l_location, &result, Policy());
  47. }
  48. RealType location()const
  49. {
  50. return m_location;
  51. }
  52. RealType scale()const
  53. {
  54. return m_scale;
  55. }
  56. private:
  57. //
  58. // Data members:
  59. //
  60. RealType m_location; // distribution location.
  61. RealType m_scale; // distribution scale.
  62. };
  63. typedef lognormal_distribution<double> lognormal;
  64. template <class RealType, class Policy>
  65. inline const std::pair<RealType, RealType> range(const lognormal_distribution<RealType, Policy>& /*dist*/)
  66. { // Range of permissible values for random variable x is >0 to +infinity.
  67. using boost::math::tools::max_value;
  68. return std::pair<RealType, RealType>(static_cast<RealType>(0), max_value<RealType>());
  69. }
  70. template <class RealType, class Policy>
  71. inline const std::pair<RealType, RealType> support(const lognormal_distribution<RealType, Policy>& /*dist*/)
  72. { // Range of supported values for random variable x.
  73. // This is range where cdf rises from 0 to 1, and outside it, the pdf is zero.
  74. using boost::math::tools::max_value;
  75. return std::pair<RealType, RealType>(static_cast<RealType>(0), max_value<RealType>());
  76. }
  77. template <class RealType, class Policy>
  78. RealType pdf(const lognormal_distribution<RealType, Policy>& dist, const RealType& x)
  79. {
  80. BOOST_MATH_STD_USING // for ADL of std functions
  81. RealType mu = dist.location();
  82. RealType sigma = dist.scale();
  83. static const char* function = "boost::math::pdf(const lognormal_distribution<%1%>&, %1%)";
  84. RealType result = 0;
  85. if(0 == detail::check_scale(function, sigma, &result, Policy()))
  86. return result;
  87. if(0 == detail::check_location(function, mu, &result, Policy()))
  88. return result;
  89. if(0 == detail::check_lognormal_x(function, x, &result, Policy()))
  90. return result;
  91. if(x == 0)
  92. return 0;
  93. RealType exponent = log(x) - mu;
  94. exponent *= -exponent;
  95. exponent /= 2 * sigma * sigma;
  96. result = exp(exponent);
  97. result /= sigma * sqrt(2 * constants::pi<RealType>()) * x;
  98. return result;
  99. }
  100. template <class RealType, class Policy>
  101. inline RealType cdf(const lognormal_distribution<RealType, Policy>& dist, const RealType& x)
  102. {
  103. BOOST_MATH_STD_USING // for ADL of std functions
  104. static const char* function = "boost::math::cdf(const lognormal_distribution<%1%>&, %1%)";
  105. RealType result = 0;
  106. if(0 == detail::check_scale(function, dist.scale(), &result, Policy()))
  107. return result;
  108. if(0 == detail::check_location(function, dist.location(), &result, Policy()))
  109. return result;
  110. if(0 == detail::check_lognormal_x(function, x, &result, Policy()))
  111. return result;
  112. if(x == 0)
  113. return 0;
  114. normal_distribution<RealType, Policy> norm(dist.location(), dist.scale());
  115. return cdf(norm, log(x));
  116. }
  117. template <class RealType, class Policy>
  118. inline RealType quantile(const lognormal_distribution<RealType, Policy>& dist, const RealType& p)
  119. {
  120. BOOST_MATH_STD_USING // for ADL of std functions
  121. static const char* function = "boost::math::quantile(const lognormal_distribution<%1%>&, %1%)";
  122. RealType result = 0;
  123. if(0 == detail::check_scale(function, dist.scale(), &result, Policy()))
  124. return result;
  125. if(0 == detail::check_location(function, dist.location(), &result, Policy()))
  126. return result;
  127. if(0 == detail::check_probability(function, p, &result, Policy()))
  128. return result;
  129. if(p == 0)
  130. return 0;
  131. if(p == 1)
  132. return policies::raise_overflow_error<RealType>(function, 0, Policy());
  133. normal_distribution<RealType, Policy> norm(dist.location(), dist.scale());
  134. return exp(quantile(norm, p));
  135. }
  136. template <class RealType, class Policy>
  137. inline RealType cdf(const complemented2_type<lognormal_distribution<RealType, Policy>, RealType>& c)
  138. {
  139. BOOST_MATH_STD_USING // for ADL of std functions
  140. static const char* function = "boost::math::cdf(const lognormal_distribution<%1%>&, %1%)";
  141. RealType result = 0;
  142. if(0 == detail::check_scale(function, c.dist.scale(), &result, Policy()))
  143. return result;
  144. if(0 == detail::check_location(function, c.dist.location(), &result, Policy()))
  145. return result;
  146. if(0 == detail::check_lognormal_x(function, c.param, &result, Policy()))
  147. return result;
  148. if(c.param == 0)
  149. return 1;
  150. normal_distribution<RealType, Policy> norm(c.dist.location(), c.dist.scale());
  151. return cdf(complement(norm, log(c.param)));
  152. }
  153. template <class RealType, class Policy>
  154. inline RealType quantile(const complemented2_type<lognormal_distribution<RealType, Policy>, RealType>& c)
  155. {
  156. BOOST_MATH_STD_USING // for ADL of std functions
  157. static const char* function = "boost::math::quantile(const lognormal_distribution<%1%>&, %1%)";
  158. RealType result = 0;
  159. if(0 == detail::check_scale(function, c.dist.scale(), &result, Policy()))
  160. return result;
  161. if(0 == detail::check_location(function, c.dist.location(), &result, Policy()))
  162. return result;
  163. if(0 == detail::check_probability(function, c.param, &result, Policy()))
  164. return result;
  165. if(c.param == 1)
  166. return 0;
  167. if(c.param == 0)
  168. return policies::raise_overflow_error<RealType>(function, 0, Policy());
  169. normal_distribution<RealType, Policy> norm(c.dist.location(), c.dist.scale());
  170. return exp(quantile(complement(norm, c.param)));
  171. }
  172. template <class RealType, class Policy>
  173. inline RealType mean(const lognormal_distribution<RealType, Policy>& dist)
  174. {
  175. BOOST_MATH_STD_USING // for ADL of std functions
  176. RealType mu = dist.location();
  177. RealType sigma = dist.scale();
  178. RealType result = 0;
  179. if(0 == detail::check_scale("boost::math::mean(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  180. return result;
  181. if(0 == detail::check_location("boost::math::mean(const lognormal_distribution<%1%>&)", mu, &result, Policy()))
  182. return result;
  183. return exp(mu + sigma * sigma / 2);
  184. }
  185. template <class RealType, class Policy>
  186. inline RealType variance(const lognormal_distribution<RealType, Policy>& dist)
  187. {
  188. BOOST_MATH_STD_USING // for ADL of std functions
  189. RealType mu = dist.location();
  190. RealType sigma = dist.scale();
  191. RealType result = 0;
  192. if(0 == detail::check_scale("boost::math::variance(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  193. return result;
  194. if(0 == detail::check_location("boost::math::variance(const lognormal_distribution<%1%>&)", mu, &result, Policy()))
  195. return result;
  196. return boost::math::expm1(sigma * sigma, Policy()) * exp(2 * mu + sigma * sigma);
  197. }
  198. template <class RealType, class Policy>
  199. inline RealType mode(const lognormal_distribution<RealType, Policy>& dist)
  200. {
  201. BOOST_MATH_STD_USING // for ADL of std functions
  202. RealType mu = dist.location();
  203. RealType sigma = dist.scale();
  204. RealType result = 0;
  205. if(0 == detail::check_scale("boost::math::mode(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  206. return result;
  207. if(0 == detail::check_location("boost::math::mode(const lognormal_distribution<%1%>&)", mu, &result, Policy()))
  208. return result;
  209. return exp(mu - sigma * sigma);
  210. }
  211. template <class RealType, class Policy>
  212. inline RealType median(const lognormal_distribution<RealType, Policy>& dist)
  213. {
  214. BOOST_MATH_STD_USING // for ADL of std functions
  215. RealType mu = dist.location();
  216. return exp(mu); // e^mu
  217. }
  218. template <class RealType, class Policy>
  219. inline RealType skewness(const lognormal_distribution<RealType, Policy>& dist)
  220. {
  221. BOOST_MATH_STD_USING // for ADL of std functions
  222. //RealType mu = dist.location();
  223. RealType sigma = dist.scale();
  224. RealType ss = sigma * sigma;
  225. RealType ess = exp(ss);
  226. RealType result = 0;
  227. if(0 == detail::check_scale("boost::math::skewness(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  228. return result;
  229. if(0 == detail::check_location("boost::math::skewness(const lognormal_distribution<%1%>&)", dist.location(), &result, Policy()))
  230. return result;
  231. return (ess + 2) * sqrt(boost::math::expm1(ss, Policy()));
  232. }
  233. template <class RealType, class Policy>
  234. inline RealType kurtosis(const lognormal_distribution<RealType, Policy>& dist)
  235. {
  236. BOOST_MATH_STD_USING // for ADL of std functions
  237. //RealType mu = dist.location();
  238. RealType sigma = dist.scale();
  239. RealType ss = sigma * sigma;
  240. RealType result = 0;
  241. if(0 == detail::check_scale("boost::math::kurtosis(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  242. return result;
  243. if(0 == detail::check_location("boost::math::kurtosis(const lognormal_distribution<%1%>&)", dist.location(), &result, Policy()))
  244. return result;
  245. return exp(4 * ss) + 2 * exp(3 * ss) + 3 * exp(2 * ss) - 3;
  246. }
  247. template <class RealType, class Policy>
  248. inline RealType kurtosis_excess(const lognormal_distribution<RealType, Policy>& dist)
  249. {
  250. BOOST_MATH_STD_USING // for ADL of std functions
  251. // RealType mu = dist.location();
  252. RealType sigma = dist.scale();
  253. RealType ss = sigma * sigma;
  254. RealType result = 0;
  255. if(0 == detail::check_scale("boost::math::kurtosis_excess(const lognormal_distribution<%1%>&)", sigma, &result, Policy()))
  256. return result;
  257. if(0 == detail::check_location("boost::math::kurtosis_excess(const lognormal_distribution<%1%>&)", dist.location(), &result, Policy()))
  258. return result;
  259. return exp(4 * ss) + 2 * exp(3 * ss) + 3 * exp(2 * ss) - 6;
  260. }
  261. } // namespace math
  262. } // namespace boost
  263. // This include must be at the end, *after* the accessors
  264. // for this distribution have been defined, in order to
  265. // keep compilers that support two-phase lookup happy.
  266. #include <boost/math/distributions/detail/derived_accessors.hpp>
  267. #endif // BOOST_STATS_STUDENTS_T_HPP