File: iladlc

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 (46 lines) | stat: -rw-r--r-- 1,044 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: iladlc
:md5sum: 519b6e504e227d778f36d69c1080c7ed
:category: :function
:type: integer
:arguments: 
- m: 
    :type: integer
    :intent: input
- n: 
    :type: integer
    :intent: input
- a: 
    :type: doublereal
    :intent: input
    :dims: 
    - lda
    - n
- lda: 
    :type: integer
    :intent: input
:substitutions: {}

:fortran_help: "      INTEGER FUNCTION ILADLC( M, N, A, LDA )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  ILADLC 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) DOUBLE PRECISION 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"