Computes the natural logarithm of the rising_factorial function.
\(\displaystyle \log\left(\frac{\Gamma(a+x)}{\Gamma(a)}\right)\) is returned. If all iputs are real typed they are reated as complex ones.
#include <kyosu/kyosu.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
using e_t = float;
using we_t = eve::wide<float, eve::fixed<2>>;
using wc_t = eve::wide<kyosu::complex_t<float>, eve::fixed<2>>;
std::cout << "Real: "<< "\n";
e_t e0(1);
e_t e1(2);
we_t we0(e0);
we_t we1(e1);
std::cout << "Complex: "<< "\n";
c_t c0(1, 5);
c_t c1(5, 9);
wc_t wc0(c0, c1);
wc_t wc1(c1, c1);
return 0;
}
as_cayley_dickson_n_t< 4, T > quaternion_t
Type alias for quaternion numbers.
Definition: quaternion.hpp:24
as_cayley_dickson_n_t< 2, T > complex_t
Type alias for complex numbers.
Definition: complex.hpp:27