blob: 2da9fe4962fb7b84ce5a5f5407a722a68f884ae0 [file] [log] [blame]
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"
void
cblas_dgbmv (const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA,
const int M, const int N, const int KL, const int KU,
const double alpha, const double *A, const int lda,
const double *X, const int incX, const double beta, double *Y,
const int incY)
{
#define BASE double
#include "source_gbmv_r.h"
#undef BASE
}