1ILADIAG(1) LAPACK routine (version 3.2) ILADIAG(1)
2
3
4
6 ILADIAG - subroutine translated from a character string specifying if a
7 matrix has unit diagonal or not to the relevant BLAST-specified integer
8 constant
9
11 INTEGER FUNCTION ILADIAG( DIAG )
12
13 CHARACTER DIAG
14
16 This subroutine translated from a character string specifying if a
17 matrix has unit diagonal or not to the relevant BLAST-specified integer
18 constant. ILADIAG returns an INTEGER. If ILADIAG < 0, then the input
19 is not a character indicating a unit or non-unit diagonal. Otherwise
20 ILADIAG returns the constant value corresponding to DIAG.
21
23 = 'N': A is non-unit triangular; = 'U': A is unit triangular.
24
25
26
27 LAPACK routine (version 3.2) November 2008 ILADIAG(1)