Accu
vdop.h
Go to the documentation of this file.
1 #ifndef VDOP_FILE
2 #define VDOP_FILE
3 
4 
18 void vddiv(const int n, double x[], const int ix,
19  const double y[], const int iy,
20  const double z[], const int iz);
21 
37 void vdaxpy(const int n, double x[], const double y[],
38  const double a, const double z[] );
39 
40 
49 double dscapr(const int n, const double x[], const double y[]);
50 
51 
52 
53 #endif
double dscapr(const int n, const double x[], const double y[])
Calculates the Euclidian inner product of two vectors.
Definition: vdop.cpp:16
void vddiv(const int n, double x[], const int ix, const double y[], const int iy, const double z[], const int iz)
Element-wise vector divison x = y/z. A stride iy =0 for the source stride adds a constant value store...
Definition: vdop.cpp:3
void vdaxpy(const int n, double x[], const double y[], const double a, const double z[])
Element-wise vector multiplication x = y*z. A stride iy =0 for the source stride adds a constant valu...
Definition: vdop.cpp:29