File: clacrt.l

package info (click to toggle)
lapack 3.0.20000531a-28
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 61,920 kB
  • ctags: 46,200
  • sloc: fortran: 584,835; perl: 8,226; makefile: 2,331; awk: 71; sh: 45
file content (45 lines) | stat: -rwxr-xr-x 1,151 bytes parent folder | download | duplicates (4)
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
.TH CLACRT l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
CLACRT - perform the operation  ( c s )( x ) ==> ( x ) ( -s c )( y ) ( y )  where c and s are complex and the vectors x and y are complex
.SH SYNOPSIS
.TP 19
SUBROUTINE CLACRT(
N, CX, INCX, CY, INCY, C, S )
.TP 19
.ti +4
INTEGER
INCX, INCY, N
.TP 19
.ti +4
COMPLEX
C, S
.TP 19
.ti +4
COMPLEX
CX( * ), CY( * )
.SH PURPOSE
CLACRT performs the operation ( c s )( x ) ==> ( x ) ( -s c )( y ) ( y ) where c and s are complex and the vectors x and y are complex. 
.SH ARGUMENTS
.TP 8
N       (input) INTEGER
The number of elements in the vectors CX and CY.
.TP 8
CX      (input/output) COMPLEX array, dimension (N)
On input, the vector x.
On output, CX is overwritten with c*x + s*y.
.TP 8
INCX    (input) INTEGER
The increment between successive values of CX.  INCX <> 0.
.TP 8
CY      (input/output) COMPLEX array, dimension (N)
On input, the vector y.
On output, CY is overwritten with -s*x + c*y.
.TP 8
INCY    (input) INTEGER
The increment between successive values of CY.  INCY <> 0.
.TP 8
C       (input) COMPLEX
S       (input) COMPLEX
C and S define the matrix
[  C   S  ].
[ -S   C  ]