Class documentation of Concepts

Loading...
Searching...
No Matches
quadratureBase.hh
Go to the documentation of this file.
1
6#ifndef quadratureBase_hh
7#define quadratureBase_hh
8
9#include "basics/typedefs.hh"
10
11namespace concepts {
12
13 // ************************************************************ C routines **
14
15#ifdef __cplusplus
16 extern "C" {
17#endif
18
41 void JacobiPol(const double alf, const double bet, const int maxn,
42 const double* x, const int m, double* p);
43
67 void JacobiDerivatives(const double alf, const double bet, const int maxn,
68 const double* x, const int m, const double* p,
69 double* q);
70
84 void JacobiZeros(double* x, int p, double alf, double bet);
85
117 void GaussLobattoAbscWght(double* x, double* w, const uint p,
118 const uint j = 0);
119
146 void GaussRadauAbscWght(double* x, double* w, const uint p,
147 const uint j = 0);
148
166 void GaussJacobiAbscWght(double* x, double* w, const uint p);
167
168#ifdef __cplusplus
169 }
170#endif
171
172} // namespace concepts
173
174#endif // quadratureBase_hh
void GaussJacobiAbscWght(double *x, double *w, const uint p)
void GaussRadauAbscWght(double *x, double *w, const uint p, const uint j=0)
void JacobiZeros(double *x, int p, double alf, double bet)
void GaussLobattoAbscWght(double *x, double *w, const uint p, const uint j=0)
void JacobiDerivatives(const double alf, const double bet, const int maxn, const double *x, const int m, const double *p, double *q)
Set< F > makeSet(uint n, const F &first,...)
Definition set.hh:320
void JacobiPol(const double alf, const double bet, const int maxn, const double *x, const int m, double *p)