File: cla_wwaddw

package info (click to toggle)
ruby-lapack 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 28,336 kB
  • sloc: ansic: 190,568; ruby: 3,837; makefile: 4
file content (53 lines) | stat: -rw-r--r-- 1,414 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
--- 
:name: cla_wwaddw
:md5sum: e6fda1b93199f58e559cbd022af359dc
:category: :subroutine
:arguments: 
- n: 
    :type: integer
    :intent: input
- x: 
    :type: complex
    :intent: input/output
    :dims: 
    - n
- y: 
    :type: complex
    :intent: input/output
    :dims: 
    - n
- w: 
    :type: complex
    :intent: input
    :dims: 
    - n
:substitutions: {}

:fortran_help: "      SUBROUTINE CLA_WWADDW( N, X, Y, W )\n\n\
  *     Purpose\n\
  *     =======\n\
  *\n\
  *     CLA_WWADDW adds a vector W into a doubled-single vector (X, Y).\n\
  *\n\
  *     This works for all extant IBM's hex and binary floating point\n\
  *     arithmetics, but not for decimal.\n\
  *\n\n\
  *     Arguments\n\
  *     =========\n\
  *\n\
  *     N      (input) INTEGER\n\
  *            The length of vectors X, Y, and W.\n\
  *\n\
  *     X      (input/output) COMPLEX array, dimension (N)\n\
  *            The first part of the doubled-single accumulation vector.\n\
  *\n\
  *     Y      (input/output) COMPLEX array, dimension (N)\n\
  *            The second part of the doubled-single accumulation vector.\n\
  *\n\
  *     W      (input) COMPLEX array, dimension (N)\n\
  *            The vector to be added.\n\
  *\n\n\
  *  =====================================================================\n\
  *\n\
  *     .. Local Scalars ..\n      COMPLEX            S\n      INTEGER            I\n\
  *     ..\n"