1ICMAX1(1) LAPACK auxiliary routine (version 3.2) ICMAX1(1)
2
3
4
6 ICMAX1 - finds the index of the element whose real part has maximum
7 absolute value
8
10 INTEGER FUNCTION ICMAX1( N, CX, INCX )
11
12 INTEGER INCX, N
13
14 COMPLEX CX( * )
15
17 ICMAX1 finds the index of the element whose real part has maximum abso‐
18 lute value. Based on ICAMAX from Level 1 BLAS.
19 The change is to use the 'genuine' absolute value.
20 Contributed by Nick Higham for use with CLACON.
21
23 N (input) INTEGER
24 The number of elements in the vector CX.
25
26 CX (input) COMPLEX array, dimension (N)
27 The vector whose elements will be summed.
28
29 INCX (input) INTEGER
30 The spacing between successive values of CX. INCX >= 1.
31
32
33
34 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 ICMAX1(1)