LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
float F77_sdot ( const int *  N,
const float *  X,
const int *  incX,
const float *  Y,
const int *  incY 
)

Definition at line 40 of file c_sblas1.c.

42 {
43  return cblas_sdot(*N, X, *incX, Y, *incY);
44 }
float cblas_sdot(const int N, const float *X, const int incX, const float *Y, const int incY)
Definition: cblas_sdot.c:12
#define N
Definition: example_user.c:10

Here is the call graph for this function: