5 double scalar(
const unsigned int N,
const double x[],
const double y[]);
14 double norm(
const unsigned int N,
const double x[]);
22 double poly(
const unsigned int p,
const double coeff[],
const double x);
24 void func_poly_1(
const unsigned int p,
const double coeff[],
25 const unsigned int N,
const double x[],
double y[]);
27 void func_poly_2(
const unsigned int p,
const double coeff[],
28 const unsigned int N,
const double x[],
double y[]);
31 const unsigned int N,
const double x[],
double y[]);
double scalar(const unsigned int N, const double x[], const double y[])
Definition: mylib.cpp:19
double norm(const unsigned int N, const double x[])
Definition: mylib.cpp:29
double poly(const unsigned int p, const double coeff[], const double x)
Definition: mylib.cpp:40
void func_poly_1(const unsigned int p, const double coeff[], const unsigned int N, const double x[], double y[])
Definition: mylib.cpp:67
void func_poly_2_unroll(const unsigned int p, const double coeff[], const unsigned int N, const double x[], double y[])
Definition: mylib.cpp:102
void func_poly_2(const unsigned int p, const double coeff[], const unsigned int N, const double x[], double y[])
Definition: mylib.cpp:80