LAPACK
3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
cblas_idamax.c
Go to the documentation of this file.
1
/*
2
* cblas_idamax.c
3
*
4
* The program is a C interface to idamax.
5
* It calls the fortran wrapper before calling idamax.
6
*
7
* Written by Keita Teranishi. 2/11/1998
8
*
9
*/
10
#include "
cblas.h
"
11
#include "
cblas_f77.h
"
12
CBLAS_INDEX
API_SUFFIX
(
cblas_idamax
)(
const
CBLAS_INT
N,
const
double
*X,
const
CBLAS_INT
incX)
13
{
14
#ifdef F77_INT
15
F77_INT
F77_N
=N,
F77_incX
=incX, F77_iamax;
16
#else
17
#define F77_N N
18
#define F77_incX incX
19
CBLAS_INT
F77_iamax;
20
#endif
21
F77_idamax_sub
( &
F77_N
, X, &
F77_incX
, &F77_iamax );
22
return
( F77_iamax > 0 )
23
? (
CBLAS_INDEX
)( F77_iamax-1 )
24
: (
CBLAS_INDEX
) 0;
25
}
CBLAS_INDEX
#define CBLAS_INDEX
Definition
cblas.h:15
API_SUFFIX
#define API_SUFFIX(a)
Definition
cblas.h:57
CBLAS_INT
#define CBLAS_INT
Definition
cblas.h:24
cblas.h
F77_INT
#define F77_INT
Definition
cblas_example2_64.c:7
F77_idamax_sub
#define F77_idamax_sub(...)
Definition
cblas_f77.h:257
cblas_f77.h
F77_incX
#define F77_incX
cblas_idamax
CBLAS_INDEX API_SUFFIX() cblas_idamax(const CBLAS_INT N, const double *X, const CBLAS_INT incX)
Definition
cblas_idamax.c:12
F77_N
#define F77_N
CBLAS
src
cblas_idamax.c
Generated on Tue Nov 28 2023 11:55:04 for LAPACK by
1.9.7