File: zlacrt

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 (73 lines) | stat: -rwxr-xr-x 1,931 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
--- 
:name: zlacrt
:md5sum: 604f79f577cce40b1cf8d8abaa65ee99
:category: :subroutine
:arguments: 
- n: 
    :type: integer
    :intent: input
- cx: 
    :type: doublecomplex
    :intent: input/output
    :dims: 
    - n
- incx: 
    :type: integer
    :intent: input
- cy: 
    :type: doublecomplex
    :intent: input/output
    :dims: 
    - n
- incy: 
    :type: integer
    :intent: input
- c: 
    :type: doublecomplex
    :intent: input
- s: 
    :type: doublecomplex
    :intent: input
:substitutions: {}

:fortran_help: "      SUBROUTINE ZLACRT( N, CX, INCX, CY, INCY, C, S )\n\n\
  *  Purpose\n\
  *  =======\n\
  *\n\
  *  ZLACRT performs the operation\n\
  *\n\
  *     (  c  s )( x )  ==> ( x )\n\
  *     ( -s  c )( y )      ( y )\n\
  *\n\
  *  where c and s are complex and the vectors x and y are complex.\n\
  *\n\n\
  *  Arguments\n\
  *  =========\n\
  *\n\
  *  N       (input) INTEGER\n\
  *          The number of elements in the vectors CX and CY.\n\
  *\n\
  *  CX      (input/output) COMPLEX*16 array, dimension (N)\n\
  *          On input, the vector x.\n\
  *          On output, CX is overwritten with c*x + s*y.\n\
  *\n\
  *  INCX    (input) INTEGER\n\
  *          The increment between successive values of CX.  INCX <> 0.\n\
  *\n\
  *  CY      (input/output) COMPLEX*16 array, dimension (N)\n\
  *          On input, the vector y.\n\
  *          On output, CY is overwritten with -s*x + c*y.\n\
  *\n\
  *  INCY    (input) INTEGER\n\
  *          The increment between successive values of CY.  INCY <> 0.\n\
  *\n\
  *  C       (input) COMPLEX*16\n\
  *  S       (input) COMPLEX*16\n\
  *          C and S define the matrix\n\
  *             [  C   S  ].\n\
  *             [ -S   C  ]\n\
  *\n\n\
  * =====================================================================\n\
  *\n\
  *     .. Local Scalars ..\n      INTEGER            I, IX, IY\n      COMPLEX*16         CTEMP\n\
  *     ..\n"