Polynom_seq
mylib.h
Go to the documentation of this file.
1 #ifndef FILE_MYLIB
2 #define FILE_MYLIB
3 
4 
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);
23 
24 void func_poly_1(const unsigned int p, const double coeff[],
25  const unsigned int N, const double x[], double y[]);
26 
27 void func_poly_2(const unsigned int p, const double coeff[],
28  const unsigned int N, const double x[], double y[]);
29 
30 void func_poly_2_unroll(const unsigned int p, const double coeff[],
31  const unsigned int N, const double x[], double y[]);
32 
33 #endif
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