Computes the Bessel functions of the third kind \( H^{(1)} \) and \( H^{(2)} \),.
{
template<eve::floating_scalar_value N, eve::floating_ordered_value T, complexRange R1, complexRange R2>
template<eve::floating_scalar_value N, conceots::kyosu::complex Z, complexRange R1, complexRange R2>
}
constexpr tags::callable_cyl_bessel_h12 cyl_bessel_h12
Computes the Bessel functions of the third kind and ,.
Definition: cyl_bessel_h12.hpp:87
Main KYOSU namespace.
Definition: types.hpp:14
#include <kyosu/kyosu.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
std::cout.precision(16);
using w_t = eve::wide<double, eve::fixed<2>>;
auto v = 3.3;
std::cout << "z " << z << std::endl;
std::vector<decltype(z)> h1(4), h2(4);
for(int n=0; n <= 3; ++n)
{
std::cout << "h1[" << n << "] = " << h1[n] << std::endl;
std::cout << "h2[" << n << "] = " << h2[n] << std::endl;
}
return 0;
}
constexpr tags::callable_complex complex
Constructs a kyosu::complex.
Definition: to_complex.hpp:70