summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/dsbmv.c
blob: 2fcc6f7c23e15165bd99c60c0f8968faecb49612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_dsbmv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
             const int N, const int K, 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_sbmv.h"
#undef BASE
}