63void gq (
const int kind,
const int n,
const double a,
const double b,
double *x,
double *w ) ;
103void gchb(
const int kind,
const int n,
double *x,
double *w ) ;
Stores data of any type T in a 1D array.
Definition Array1D.h:61
void gq_gen(Array1D< double > &a, Array1D< double > &b, const double amu0, Array1D< double > &x, Array1D< double > &w)
Computes abscissas and weights for a generic orthogonal polynomial recursion using the Golub-Welsch a...
Definition gq.cpp:252
void gq(const int kind, const double a, const double b, Array1D< double > &x, Array1D< double > &w)
Computes abscissas and weights for several quadrature rules.
Definition gq.cpp:66
void vandermonde_gq(Array1D< double > &x, Array1D< double > &w, Array1D< double > &q)
Computes abscissas and weights for Newton-Cotes rules through the solution of a Vandermonde matrix....
Definition gq.cpp:285
void gchb(const int kind, const int n, double *x, double *w)
Computes abscissas and weights for Chebyshev quadrature rules.
Definition gq.cpp:213