Processing math: 100%
kyosu v0.1.0
Complex Without Complexes
 
All Classes Namespaces Functions Variables Typedefs Modules Pages Concepts
Loading...
Searching...
No Matches

◆ tricomi

kyosu::tricomi = eve::functor<tricomi_t>
inlineconstexpr

Computes the tricomi function U also called confluent hypergeometric function of the second kind.

Defined in Header

#include <kyosu/functions.hpp>

Callable Signatures

namespace kyosu
{
constexpr auto tricomi(auto z, auto a, auto b) noexcept;
}
constexpr auto tricomi
Computes the tricomi function also called confluent hypergeometric function of the second kind.
Definition: tricomi.hpp:83
Main KYOSU namespace.
Definition: cinf.hpp:13

Parameters

  • a, b, z: real or complex inputs.

Return value

Returns the value at z of the confluent hypergeometric function of the second kind with a and b parameters and non integral b

External references

#include <kyosu/kyosu.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
auto I = kyosu::complex(0.0, 1.0);
std::cout << "tricomi(2.0, 1, 1.5) "<< kyosu::tricomi(2.0, 1, 1.5) << std::endl;
std::cout << "tricomi(2.0, 1, I) "<< kyosu::tricomi(2.0, 1, I) << std::endl;
return 0;
}
constexpr auto complex
Constructs a kyosu::complex_t instance.
Definition: to_complex.hpp:75