gsl_cblas__srotm.c 259 B

12345678910111213
  1. #include "gsl_math.h"
  2. #include "gsl_cblas.h"
  3. #include "gsl_cblas__cblas.h"
  4. void
  5. cblas_srotm (const int N, float *X, const int incX, float *Y, const int incY,
  6. const float *P)
  7. {
  8. #define BASE float
  9. #include "gsl_cblas__source_rotm.h"
  10. #undef BASE
  11. }