3 * =========== DOCUMENTATION ===========
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
9 *> Download ILAUPLO + dependencies
10 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilauplo.f">
12 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ilauplo.f">
14 *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ilauplo.f">
21 * INTEGER FUNCTION ILAUPLO( UPLO )
23 * .. Scalar Arguments ..
33 *> This subroutine translated from a character string specifying a
34 *> upper- or lower-triangular matrix to the relevant BLAST-specified
37 *> ILAUPLO returns an INTEGER. If ILAUPLO < 0, then the input is not
38 *> a character indicating an upper- or lower-triangular matrix.
39 *> Otherwise ILAUPLO returns the constant value corresponding to UPLO.
49 *> \author Univ. of Tennessee
50 *> \author Univ. of California Berkeley
51 *> \author Univ. of Colorado Denver
54 *> \date November 2011
56 *> \ingroup auxOTHERcomputational
58 * =====================================================================
59 INTEGER FUNCTION ILAUPLO( UPLO )
61 * -- LAPACK computational routine (version 3.4.0) --
62 * -- LAPACK is a software package provided by Univ. of Tennessee, --
63 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
66 * .. Scalar Arguments ..
70 * =====================================================================
73 INTEGER BLAS_UPPER, BLAS_LOWER
74 PARAMETER ( BLAS_UPPER = 121, BLAS_LOWER = 122 )
76 * .. External Functions ..
80 * .. Executable Statements ..
81 IF( LSAME( UPLO, 'U' ) ) THEN
83 ELSE IF( LSAME( UPLO, 'L' ) ) THEN