Loading [MathJax]/extensions/tex2jax.js
kyosu v0.1.0
Complex Without Complexes
 
All Classes Namespaces Functions Variables Typedefs Modules Pages Concepts
Loading...
Searching...
No Matches

◆ tgamma

kyosu::tgamma = eve::functor<tgamma_t>
inlineconstexpr

Computes \(\Gamma(z)\), \(\Gamma(z, x)\) and \(\gamma(z, x)\), the gamma function and the upper and lower incomplete gamma functions.

Header file

#include <kyosu/functions.hpp>

Callable Signatures

namespace kyosu
{
// regular calls
constexpr T tgamma(T z) noexcept;
}
constexpr auto tgamma
Computes , and , the gamma function and the upper and lower incomplete gamma functions.
Definition: tgamma.hpp:70
Main KYOSU namespace.
Definition: cinf.hpp:13

Parameters

  • z : Value to process.

Return value

returns \(\Gamma(z)\).

External references

Example

#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};
auto zc = kyosu::complex_t<wide_t>(ref1, imf1);
std::cout
<< "---- simd" << std::endl
<< "<- zc = " << zc << std::endl
<< "-> tgamma(zc) = " << kyosu::tgamma(zc)<< std::endl
<< "-> tgamma(ref2) = " << kyosu::tgamma(ref2) << std::endl;
}
as_cayley_dickson_n_t< 2, T > complex_t
Type alias for complex numbers.
Definition: complex.hpp:27