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

◆ chla_transtype()

character*1 function chla_transtype ( integer trans)

CHLA_TRANSTYPE

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

Purpose:
!>
!> This subroutine translates from a BLAST-specified integer constant to
!> the character string specifying a transposition operation.
!>
!> CHLA_TRANSTYPE returns an CHARACTER*1.  If CHLA_TRANSTYPE is 'X',
!> then input is not an integer indicating a transposition operator.
!> Otherwise CHLA_TRANSTYPE returns the constant value corresponding to
!> TRANS.
!> 
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.

Definition at line 55 of file chla_transtype.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 INTEGER TRANS
63* ..
64*
65* =====================================================================
66*
67* .. Parameters ..
68 INTEGER BLAS_NO_TRANS, BLAS_TRANS, BLAS_CONJ_TRANS
69 parameter( blas_no_trans = 111, blas_trans = 112,
70 $ blas_conj_trans = 113 )
71* ..
72* .. Executable Statements ..
73 IF( trans.EQ.blas_no_trans ) THEN
74 chla_transtype = 'N'
75 ELSE IF( trans.EQ.blas_trans ) THEN
76 chla_transtype = 'T'
77 ELSE IF( trans.EQ.blas_conj_trans ) THEN
78 chla_transtype = 'C'
79 ELSE
80 chla_transtype = 'X'
81 END IF
82 RETURN
83*
84* End of CHLA_TRANSTYPE
85*
character *1 function chla_transtype(trans)
CHLA_TRANSTYPE
Here is the call graph for this function:
Here is the caller graph for this function: