1ILACLC(1) LAPACK auxiliary routine (version 3.2) ILACLC(1)
2
3
4
6 ILACLC - scans A for its last non-zero column
7
9 INTEGER FUNCTION ILACLC(M, N, A, LDA)
10
11 IMPLICIT NONE
12
13 INTEGER M, N, LDA
14
15 COMPLEX A( LDA, * )
16
18 ILACLC scans A for its last non-zero column.
19
21 M (input) INTEGER
22 The number of rows of the matrix A.
23
24 N (input) INTEGER
25 The number of columns of the matrix A.
26
27 A (input) COMPLEX array, dimension (LDA,N)
28 The m by n matrix A.
29
30 LDA (input) INTEGER
31 The leading dimension of the array A. LDA >= max(1,M).
32
33
34
35 LAPACK auxiliary routine (versionNo3v.e2m)ber 2008 ILACLC(1)