double riemann_zeta ( double num );
/* floating-point-type */ riemann_zeta( /* floating-point-type */ num );
(since C++23)float riemann_zetaf( float num );
(2) (since C++17)long double riemann_zetal( long double num );
(3) (since C++17)template< class Integer >
double riemann_zeta ( Integer num );
Computes the
Riemann zeta functionof
num.
The library provides overloads ofstd::riemann_zeta
for all cv-unqualified floating-point types as the type of the parameter num.(since C++23)
A) Additional overloads are provided for all integer types, which are treated as double.
[edit] Parameters num - floating-point or value [edit] Return valueIf no errors occur, value of the Riemann zeta function of num, ζ(num), defined for the entire real axis:
Errors may be reported as specified in math_errhandling.
Implementations that do not support C++17, but support ISO 29124:2010, provide this function if __STDCPP_MATH_SPEC_FUNCS__
is defined by the implementation to a value at least 201003L and if the user defines __STDCPP_WANT_MATH_SPEC_FUNCS__
before including any standard library headers.
Implementations that do not support ISO 29124:2010 but support TR 19768:2007 (TR1), provide this function in the header tr1/cmath
and namespace std::tr1
.
An implementation of this function is also available in boost.math.
The additional overloads are not required to be provided exactly as (A). They only need to be sufficient to ensure that for their argument num of integer type, std::riemann_zeta(num) has the same effect as std::riemann_zeta(static_cast<double>(num)).
[edit] Example#include <cmath> #include <format> #include <iostream> #include <numbers> int main() { constexpr auto Ï = std::numbers::pi; // spot checks for well-known values for (const double x : {-1.0, 0.0, 1.0, 0.5, 2.0}) std::cout << std::format("ζ({})\t= {:+.5f}\n", x, std::riemann_zeta(x)); std::cout << std::format("ϲ/6\t= {:+.5f}\n", Ï * Ï / 6); }
Output:
ζ(-1) = -0.08333 ζ(0) = -0.50000 ζ(1) = +inf ζ(0.5) = -1.46035 ζ(2) = +1.64493 ϲ/6 = +1.64493[edit] External links
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4