Developer Reference for Intel® oneAPI Math Kernel Library for Fortran
A newer version of this document is available. Customers should click here to go to the newest version.
chla_transtype
Translates a BLAST-specified integer constant to the character string specifying a transposition operation.
val = chla_transtype( trans )
- mkl.fi
The chla_transtype function translates a BLAST-specified integer constant to the character string specifying a transposition operation.
The function returns a CHARACTER*1. If the input is not an integer indicating a transposition operator, then val is 'X'. Otherwise, the function returns the constant value corresponding to trans.
- trans
-
INTEGER.
Specifies the form of the system of equations:
If trans = BLAS_NO_TRANS = 111: No transpose.
If trans = BLAS_TRANS = 112: Transpose.
If trans = BLAS_CONJ_TRANS = 113: Conjugate Transpose.
- val
-
CHARACTER*1
Character that specifies a transposition operation.