File: clacgv

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 (44 lines) | stat: -rw-r--r-- 1,180 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
--- 
:name: clacgv
:md5sum: b798c93b96a1a5b91fa73ba3dcd76a1b
:category: :subroutine
:arguments: 
- n: 
    :type: integer
    :intent: input
- x: 
    :type: complex
    :intent: input/output
    :dims: 
    - 1+(n-1)*abs(incx)
- incx: 
    :type: integer
    :intent: input
:substitutions: {}

:fortran_help: "      SUBROUTINE CLACGV( N, X, INCX )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  CLACGV conjugates a complex vector of length N.\n\
  *\n\n\
  *  Arguments\n\
  *  =========\n\
  *\n\
  *  N       (input) INTEGER\n\
  *          The length of the vector X.  N >= 0.\n\
  *\n\
  *  X       (input/output) COMPLEX array, dimension\n\
  *                         (1+(N-1)*abs(INCX))\n\
  *          On entry, the vector of length N to be conjugated.\n\
  *          On exit, X is overwritten with conjg(X).\n\
  *\n\
  *  INCX    (input) INTEGER\n\
  *          The spacing between successive elements of X.\n\
  *\n\n\
  * =====================================================================\n\
  *\n\
  *     .. Local Scalars ..\n      INTEGER            I, IOFF\n\
  *     ..\n\
  *     .. Intrinsic Functions ..\n      INTRINSIC          CONJG\n\
  *     ..\n"