lambert_w_basic_example.cpp 1.2 KB

123456789101112131415161718192021222324252627282930
  1. // Copyright Paul A. Bristow 2018
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt
  4. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // Example of most basic call of both lambert W functions.
  6. // Only requires C++03
  7. // (and optionally a call of max_digits10 to show precision).
  8. #include <boost/math/special_functions/lambert_w.hpp> // For lambert_w0 and wm1 functions.
  9. #include <iostream>
  10. #include <iomanip>
  11. int main()
  12. {
  13. double z = 2.0;
  14. double w0 = boost::math::lambert_w0(z);
  15. std::cout.setf(std::ios_base::showpoint); // Include any trailing zeros.
  16. std::cout.precision(std::numeric_limits<double>::max_digits10); // Show all possibly significant digits.
  17. // Avoid using max_digfigs10 so as many old compilers can run the most basic lambert_w0 test?
  18. // Require to get max_digits10
  19. // [ run lambert_w_basic_example.cpp : : : [ requires cxx11_numeric_limits ] ]
  20. std::cout << " lambert_w0(" << z << ") = " << w0 << std::endl; // lambert_w0(2.00000) = 0.852606
  21. z = -0.2;
  22. double wm1 = boost::math::lambert_wm1(z);
  23. std::cout << " lambert_wm1(" << z << ") = " << wm1 << std::endl; // lambert_wm1(-0.200000) = -2.54264
  24. return 0;
  25. } // int main()