Applies a plane rotation with real cosine and complex sine to a pair of complex vectors.
The FORTRAN 77 interfaces are specified in the mkl_lapack.fi include file (to be used in Fortran programs) and in the mkl_lapack.h include file (to be used in C programs).
The routine applies a plane rotation, where the cosine (c) is real and the sine (s) is complex, and the vectors cx and cy are complex. This routine has its real equivalents in BLAS (see ?rot in Chapter "BLAS and Sparse BLAS Routines").
INTEGER. The number of elements in the vectors cx and cy.
COMPLEX for crot
COMPLEX*16 for zrot
Arrays of dimension (n), contain input vectors x and y, respectively.
INTEGER. The increment between successive elements of cx.
INTEGER. The increment between successive elements of cy.
REAL for crot
DOUBLE PRECISION for zrot
COMPLEX for crot
COMPLEX*16 for zrot
Values that define a rotation
where c*c + s*conjg(s) = 1.0.
Copyright © 1994 - 2010, Intel Corporation. All rights reserved.