table of contents
other versions
- wheezy 3.4.1+dfsg-1+deb70u1
 - jessie 3.5.0-4
 - jessie-backports 3.7.0-1~bpo8+1
 - testing 3.7.0-2
 - unstable 3.7.0-2
 
| clacrt.f(3) | LAPACK | clacrt.f(3) | 
NAME¶
clacrt.f -SYNOPSIS¶
Functions/Subroutines¶
subroutine clacrt (N, CX, INCX, CY, INCY, C, S)
Function/Subroutine Documentation¶
subroutine clacrt (integerN, complex, dimension( * )CX, integerINCX, complex, dimension( * )CY, integerINCY, complexC, complexS)¶
CLACRT 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.
N
 
CX
 
INCX
 
CY
 
INCY
 
C
 
S
 
Author:
          N is INTEGER
          The number of elements in the vectors CX and CY.
          CX is COMPLEX array, dimension (N)
          On input, the vector x.
          On output, CX is overwritten with c*x + s*y.
          INCX is INTEGER
          The increment between successive values of CX.  INCX <> 0.
          CY is COMPLEX array, dimension (N)
          On input, the vector y.
          On output, CY is overwritten with -s*x + c*y.
          INCY is INTEGER
          The increment between successive values of CY.  INCY <> 0.
C is COMPLEX
          S is COMPLEX
          C and S define the matrix
             [  C   S  ].
             [ -S   C  ]
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date:
November 2011
Author¶
Generated automatically by Doxygen for LAPACK from the source code.| Sun May 26 2013 | Version 3.4.1 |