1DLARGV(1) LAPACK auxiliary routine (version 3.1) DLARGV(1)
2
3
4
6 DLARGV - a vector of real plane rotations, determined by elements of
7 the real vectors x and y
8
10 SUBROUTINE DLARGV( N, X, INCX, Y, INCY, C, INCC )
11
12 INTEGER INCC, INCX, INCY, N
13
14 DOUBLE PRECISION C( * ), X( * ), Y( * )
15
17 DLARGV generates a vector of real plane rotations, determined by ele‐
18 ments of the real vectors x and y. For i = 1,2,...,n
19
20 ( c(i) s(i) ) ( x(i) ) = ( a(i) )
21 ( -s(i) c(i) ) ( y(i) ) = ( 0 )
22
23
25 N (input) INTEGER
26 The number of plane rotations to be generated.
27
28 X (input/output) DOUBLE PRECISION array,
29 dimension (1+(N-1)*INCX) On entry, the vector x. On exit, x(i)
30 is overwritten by a(i), for i = 1,...,n.
31
32 INCX (input) INTEGER
33 The increment between elements of X. INCX > 0.
34
35 Y (input/output) DOUBLE PRECISION array,
36 dimension (1+(N-1)*INCY) On entry, the vector y. On exit, the
37 sines of the plane rotations.
38
39 INCY (input) INTEGER
40 The increment between elements of Y. INCY > 0.
41
42 C (output) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
43 The cosines of the plane rotations.
44
45 INCC (input) INTEGER
46 The increment between elements of C. INCC > 0.
47
48
49
50 LAPACK auxiliary routine (versionNo3v.e1m)ber 2006 DLARGV(1)