LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ ilauplo()

integer function ilauplo ( character uplo)

ILAUPLO

Download ILAUPLO + dependencies [TGZ] [ZIP] [TXT]

Purpose:
!>
!> This subroutine translated from a character string specifying a
!> upper- or lower-triangular matrix to the relevant BLAST-specified
!> integer constant.
!>
!> ILAUPLO returns an INTEGER.  If ILAUPLO < 0, then the input is not
!> a character indicating an upper- or lower-triangular matrix.
!> Otherwise ILAUPLO returns the constant value corresponding to UPLO.
!> 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 55 of file ilauplo.f.

56*
57* -- LAPACK computational routine --
58* -- LAPACK is a software package provided by Univ. of Tennessee, --
59* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
60*
61* .. Scalar Arguments ..
62 CHARACTER UPLO
63* ..
64*
65* =====================================================================
66*
67* .. Parameters ..
68 INTEGER BLAS_UPPER, BLAS_LOWER
69 parameter( blas_upper = 121, blas_lower = 122 )
70* ..
71* .. External Functions ..
72 LOGICAL LSAME
73 EXTERNAL lsame
74* ..
75* .. Executable Statements ..
76 IF( lsame( uplo, 'U' ) ) THEN
77 ilauplo = blas_upper
78 ELSE IF( lsame( uplo, 'L' ) ) THEN
79 ilauplo = blas_lower
80 ELSE
81 ilauplo = -1
82 END IF
83 RETURN
84*
85* End of ILAUPLO
86*
integer function ilauplo(uplo)
ILAUPLO
Definition ilauplo.f:56
logical function lsame(ca, cb)
LSAME
Definition lsame.f:48
Here is the call graph for this function:
Here is the caller graph for this function: