File: ilaclc

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 (46 lines) | stat: -rwxr-xr-x 1,032 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
--- 
:name: ilaclc
:md5sum: 40eb72bf94adf85b58d07bf4f02e8461
:category: :function
:type: integer
:arguments: 
- m: 
    :type: integer
    :intent: input
- n: 
    :type: integer
    :intent: input
- a: 
    :type: complex
    :intent: input
    :dims: 
    - lda
    - n
- lda: 
    :type: integer
    :intent: input
:substitutions: {}

:fortran_help: "      INTEGER FUNCTION ILACLC( M, N, A, LDA )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  ILACLC scans A for its last non-zero column.\n\
  *\n\n\
  *  Arguments\n\
  *  =========\n\
  *\n\
  *  M       (input) INTEGER\n\
  *          The number of rows of the matrix A.\n\
  *\n\
  *  N       (input) INTEGER\n\
  *          The number of columns of the matrix A.\n\
  *\n\
  *  A       (input) COMPLEX array, dimension (LDA,N)\n\
  *          The m by n matrix A.\n\
  *\n\
  *  LDA     (input) INTEGER\n\
  *          The leading dimension of the array A. LDA >= max(1,M).\n\
  *\n\n\
  *  =====================================================================\n\
  *\n"