summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/dgbmv.c
blob: 2da9fe4962fb7b84ce5a5f5407a722a68f884ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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
}