Loading [MathJax]/extensions/tex2jax.js
kyosu v0.1.0
Complex Without Complexes
 
All Classes Namespaces Functions Variables Typedefs Modules Pages Concepts
Loading...
Searching...
No Matches

◆ gegenbauer

kyosu::gegenbauer = eve::functor<gegenbauer_t>
inlineconstexpr

Computes the value of the Gegenbauer function of order \(n\) and parameter \(\lambda\), \(C^{(\lambda)}_n(z)\) at z. If \(n\) is an integer the function is a polynomial of degree \(n\).

Header file

#include <kyosu/functions.hpp>

Callable Signatures

namespace eve
{
// Regular overload
auto constexpr gegenbauer( auto n, auto lambda, auto z) noexcept; // 1
// Lanes masking
constexpr auto gegenbauer[conditional_expr auto c](/* any previous overload */) noexcept; // 2
constexpr auto gegenbauer[logical_value auto m](/* any previous overload */) noexcept; // 2
}
constexpr auto gegenbauer
Computes the value of the Gegenbauer function of order and parameter , at z. If is an integer the ...
Definition: gegenbauer.hpp:96

Parameters

Return value

1.The value of the function at z is returned.

  1. The operation is performed conditionnaly.

External references

Example