Computes \(\Gamma(z)\), \(\Gamma(z, x)\) and \(\gamma(z, x)\), the gamma function and the upper and lower incomplete gamma functions.
returns \(\Gamma(z)\).
#include <kyosu/kyosu.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
using wide_t = eve::wide <double, eve::fixed<4>>;
wide_t ref1 = { 3.0, 2.0, 1.0, 0.5};
wide_t imf1 = { 2.0 , -1.0, -5.0, 0.0};
wide_t ref2 = { 0.0, 1.0, 2.0, 3.0};
std::cout
<< "---- simd" << std::endl
<< "<- zc = " << zc << std::endl
<< "-> Γ(ref2) = " << kyosu::Γ(ref2) << std::endl;
}
as_cayley_dickson_n_t< 2, T > complex_t
Type alias for complex numbers.
Definition: complex.hpp:27