Performs rotation of points in the plane.
FORTRAN 77:
call srot(n, x, incx, y, incy, c, s)
call drot(n, x, incx, y, incy, c, s)
call csrot(n, x, incx, y, incy, c, s)
call zdrot(n, x, incx, y, incy, c, s)
Fortran 95:
call rot(x, y, c, s)
The FORTRAN 77 interfaces are specified in the mkl_blas.fi include file, the Fortran 95 interfaces are specified in the blas.f90 include file, and the C interfaces are specified in the mkl_blas.h include file.
Given two complex vectors x and y, each vector element of these vectors is replaced as follows:
x(i) = c*x(i) + s*y(i)
y(i) = c*y(i) - s*x(i)
INTEGER. Specifies the number of elements in vectors x and y.
REAL for srot
DOUBLE PRECISION for drot
COMPLEX for csrot
DOUBLE COMPLEX for zdrot
Array, DIMENSION at least (1 + (n-1)*abs(incx)).
INTEGER. Specifies the increment for the elements of x.
REAL for srot
DOUBLE PRECISION for drot
COMPLEX for csrot
DOUBLE COMPLEX for zdrot
Array, DIMENSION at least (1 + (n -1)*abs(incy)).
INTEGER. Specifies the increment for the elements of y.
REAL for srot
DOUBLE PRECISION for drot
REAL for csrot
DOUBLE PRECISION for zdrot
A scalar.
REAL for srot
DOUBLE PRECISION for drot
REAL for csrot
DOUBLE PRECISION for zdrot
A scalar.
Routines in Fortran 95 interface have fewer arguments in the calling sequence than their FORTRAN 77 counterparts. For general conventions applied to skip redundant or reconstructible arguments, see Fortran 95 Interface Conventions.
Specific details for the routine rot interface are the following:
Holds the vector with the number of elements n.
Holds the vector with the number of elements n.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.