Computes the Bessel functions of the third kind \(H^{(1)}\),.
{
template<eve::floating_scalar_value N, eve::floating_ordered_value T,>
template<eve::floating_scalar_value N, concepts::kyosu::complex Z>
template<eve::floating_scalar_value N, eve::floating_ordered_value T, complexRange R>
template<eve::floating_scalar_value N, concepts::kyosu::complex Z, complexRange R>
}
constexpr tags::callable_cyl_bessel_h1 cyl_bessel_h1
Computes the Bessel functions of the third kind ,.
Definition: cyl_bessel_h1.hpp:106
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 = 0.0;
std::cout << "z " << z << std::endl;
for(int n=0; n <= 3; ++n)
{
std::cout << "v " << v << std::endl;
std::cout << "yl_bessel_h1(v, z) " << h1 << std::endl;
v = v+0.25;
}
return 0;
}
constexpr tags::callable_complex complex
Constructs a kyosu::complex.
Definition: to_complex.hpp:70