1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
---
:name: ilatrans
:md5sum: acab13cd31e9e8595e98f380ecc03932
:category: :function
:type: integer
:arguments:
- trans:
:type: char
:intent: input
:substitutions: {}
:fortran_help: " INTEGER FUNCTION ILATRANS( TRANS )\n\n\
* Purpose\n\
* =======\n\
*\n\
* This subroutine translates from a character string specifying a\n\
* transposition operation to the relevant BLAST-specified integer\n\
* constant.\n\
*\n\
* ILATRANS returns an INTEGER. If ILATRANS < 0, then the input is not\n\
* a character indicating a transposition operator. Otherwise ILATRANS\n\
* returns the constant value corresponding to TRANS.\n\
*\n\n\
* Arguments\n\
* =========\n\
* TRANS (input) CHARACTER*1\n\
* Specifies the form of the system of equations:\n\
* = 'N': No transpose\n\
* = 'T': Transpose\n\
* = 'C': Conjugate transpose\n\n\
* =====================================================================\n\
*\n"
|