csrot(3f) - [BLAS:COMPLEX_BLAS_LEVEL1] Applies a real Givens rotation to complex vectors.
Synopsis
Definition
Options
Cx
Cy
Authors
See Also
subroutine csrot( n, cx, incx, cy, incy, c, s )
.. Scalar Arguments .. integer,intent(in) :: incx, incy, n real,intent(in) :: c, s .. .. Array Arguments .. complex,intent(inout) :: cx( * ), cy( * ) ..
CSROT applies a plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex. jack dongarra, linpack, 3/11/78.
N is INTEGER On entry, N specifies the order of the vectors cx and cy. N must be at least zero.
CX is COMPLEX array, dimension at least ( 1 + ( N - 1 )*abs( INCX ) ). Before entry, the incremented array CX must contain the n element vector cx. On exit, CX is overwritten by the updated vector cx.
INCX is INTEGER On entry, INCX specifies the increment for the elements of CX. INCX must not be zero.
CY is COMPLEX array, dimension at least ( 1 + ( N - 1 )*abs( INCY ) ). Before entry, the incremented array CY must contain the n element vector cy. On exit, CY is overwritten by the updated vector cy.
INCY is INTEGER On entry, INCY specifies the increment for the elements of CY. INCY must not be zero.
C is REAL On entry, C specifies the cosine, cos.
S is REAL On entry, S specifies the sine, sin.
o Univ. of Tennessee o Univ. of California Berkeley o Univ. of Colorado Denver o NAG Ltd. date:December 2016
Online html documentation available at http://www.netlib.org/lapack/explore-html/
Nemo Release 3.1 | csrot (3) | February 23, 2025 |