LAPACK
3.6.1
LAPACK: Linear Algebra PACKage
Main Page
Modules
Data Types List
Files
File List
File Members
cblas_cscal.c
Go to the documentation of this file.
1
/*
2
* cblas_cscal.c
3
*
4
* The program is a C interface to cscal.
5
*
6
* Written by Keita Teranishi. 2/11/1998
7
*
8
*/
9
#include "
cblas.h
"
10
#include "
cblas_f77.h
"
11
void
cblas_cscal
(
const
int
N
,
const
void
*alpha,
void
*X,
12
const
int
incX)
13
{
14
#ifdef F77_INT
15
F77_INT
F77_N
=
N
,
F77_incX
=incX;
16
#else
17
#define F77_N N
18
#define F77_incX incX
19
#endif
20
F77_cscal
( &F77_N, alpha, X, &F77_incX);
21
}
F77_N
#define F77_N
F77_incX
#define F77_incX
cblas.h
cblas_f77.h
cblas_cscal
void cblas_cscal(const int N, const void *alpha, void *X, const int incX)
Definition:
cblas_cscal.c:11
F77_cscal
#define F77_cscal
Definition:
cblas_f77.h:72
N
#define N
Definition:
example_user.c:10
CBLAS
src
cblas_cscal.c
Generated on Sun Jun 19 2016 20:52:09 for LAPACK by
1.8.10