18 void vddiv(
const int n,
float x[],
const int ix,
19 const float y[],
const int iy,
20 const float z[],
const int iz);
37 void vdaxpy(
const int n,
float x[],
const float y[],
38 const float a,
const float z[] );
49 float dscapr(
const int n,
const float x[],
const float y[]);
void vddiv(const int n, float x[], const int ix, const float y[], const int iy, const float 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:6
void vdaxpy(const int n, float x[], const float y[], const float a, const float z[])
Element-wise vector multiplication x = y*z. A stride iy =0 for the source stride adds a constant valu...
Definition: vdop.cpp:19
float dscapr(const int n, const float x[], const float y[])
Calculates the Euclidian inner product of two vectors.
Definition: vdop.cpp:62