Computes the Bessel functions of the second kind \(I\) and \(K \)of integral order,.
{
template<eve::integral_scalar_value N, eve::floating_ordered_value T, complexRange R>
template<eve::integral_scalar_value N, conceots::kyosu::complex Z, complexRange R>
}
constexpr tags::callable_cyl_bessel_ikn cyl_bessel_ikn
Computes the Bessel functions of the second kind and of integral order,.
Definition: cyl_bessel_ikn.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>>;
std::cout << "z " << z << std::endl;
std::vector<decltype(z)> is(4), ks(4);
for(int n=0; n <= 3; ++n)
{
std::cout << "is[" << n << "] = " << is[n] << std::endl;
std::cout << "ks[" << n << "] = " << ks[n] << std::endl;
}
return 0;
}
constexpr tags::callable_complex complex
Constructs a kyosu::complex.
Definition: to_complex.hpp:70