File: ilatrans

package info (click to toggle)
ruby-lapack 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 29,304 kB
  • ctags: 3,419
  • sloc: ansic: 190,572; ruby: 3,937; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,006 bytes parent folder | download | duplicates (5)
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"