DAS  3.0
Das Analysis System
Term< n >

Description

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

Chebyshev Terms.

#include <Greta.h>

Static Public Member Functions

static double Eval (const double x)
 

Member Function Documentation

◆ Eval()

static double Eval ( const double  x)
inlinestatic
33  {
34  const size_t m = n-1, k = n-2;
35  return 2*x*Term<m>::Eval(x)-Term<k>::Eval(x);
36  }

The documentation for this struct was generated from the following file:
DAS::Chebyshev::Term::Eval
static double Eval(const double x)
Definition: Greta.h:32