DAS  3.0
Das Analysis System
Polynom< n >

Description

template<const size_t n>
struct DAS::Chebyshev::Polynom< n >

Chebyshev Polynoms.

#include <Greta.h>

Static Public Member Functions

static double Eval (double x, const double p[])
 

Member Function Documentation

◆ Eval()

static double Eval ( double  x,
const double  p[] 
)
inlinestatic
49  {
50  const size_t k = n-1;
51  return p[n]*Term<n>::Eval(x) + Polynom<k>::Eval(x,p);
52  }

The documentation for this struct was generated from the following file:
DAS::Chebyshev::Polynom::Eval
static double Eval(double x, const double p[])
Definition: Greta.h:48
Ntupliser_cfg.p
p
Definition: Ntupliser_cfg.py:358
DAS::Chebyshev::Term::Eval
static double Eval(const double x)
Definition: Greta.h:32