| ILAZLR(1) | LAPACK auxiliary routine (version 3.2) | ILAZLR(1) | 
NAME¶
ILAZLR - scans A for its last non-zero row
SYNOPSIS¶
- INTEGER FUNCTION
 - ILAZLR(M, N, A, LDA)
 
IMPLICIT NONE INTEGER M, N, LDA COMPLEX*16 A( LDA, * )
PURPOSE¶
ILAZLR scans A for its last non-zero row.
ARGUMENTS¶
- M (input) INTEGER
 - The number of rows of the matrix A.
 - N (input) INTEGER
 - The number of columns of the matrix A.
 - A (input) COMPLEX*16 array, dimension (LDA,N)
 - The m by n matrix A.
 - LDA (input) INTEGER
 - The leading dimension of the array A. LDA >= max(1,M).
 
| November 2008 | LAPACK auxiliary routine (version 3.2) |