File: lsamen

package info (click to toggle)
ruby-lapack 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 28,552 kB
  • sloc: ansic: 191,612; ruby: 3,934; makefile: 8
file content (50 lines) | stat: -rwxr-xr-x 1,473 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--- 
:name: lsamen
:md5sum: 436b27be921ef85dfbabbd827f65a5f1
:category: :function
:type: logical
:arguments: 
- n: 
    :type: integer
    :intent: input
- ca: 
    :type: char
    :intent: input
    :dims: 
    - "*"
- cb: 
    :type: char
    :intent: input
    :dims: 
    - "*"
:substitutions: {}

:fortran_help: "      LOGICAL          FUNCTION LSAMEN( N, CA, CB )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  LSAMEN  tests if the first N letters of CA are the same as the\n\
  *  first N letters of CB, regardless of case.\n\
  *  LSAMEN returns .TRUE. if CA and CB are equivalent except for case\n\
  *  and .FALSE. otherwise.  LSAMEN also returns .FALSE. if LEN( CA )\n\
  *  or LEN( CB ) is less than N.\n\
  *\n\n\
  *  Arguments\n\
  *  =========\n\
  *\n\
  *  N       (input) INTEGER\n\
  *          The number of characters in CA and CB to be compared.\n\
  *\n\
  *  CA      (input) CHARACTER*(*)\n\
  *  CB      (input) CHARACTER*(*)\n\
  *          CA and CB specify two character strings of length at least N.\n\
  *          Only the first N characters of each string will be accessed.\n\
  *\n\n\
  * =====================================================================\n\
  *\n\
  *     .. Local Scalars ..\n      INTEGER            I\n\
  *     ..\n\
  *     .. External Functions ..\n      LOGICAL            LSAME\n      EXTERNAL           LSAME\n\
  *     ..\n\
  *     .. Intrinsic Functions ..\n      INTRINSIC          LEN\n\
  *     ..\n"