Applies Givens rotation to sparse vectors one of which is in compressed form.
FORTRAN 77:
call sroti(nz, x, indx, y, c, s)
call droti(nz, x, indx, y, c, s)
Fortran 95:
call roti(x, indx, 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.
The ?roti routines apply the Givens rotation to elements of two real vectors, x (in compressed form nz, x, indx) and y (in full storage form):
x(i) = c*x(i) + s*y(indx(i))
y(indx(i)) = c*y(indx(i))- s*x(i)
The routines reference only the elements of y whose indices are listed in the array indx. The values in indx must be distinct.
INTEGER. The number of elements in x and indx.
REAL for sroti
DOUBLE PRECISION for droti
Array, DIMENSION at least nz.
INTEGER. Specifies the indices for the elements of x.
Array, DIMENSION at least nz.
REAL for sroti
DOUBLE PRECISION for droti
Array, DIMENSION at least max(indx(i)).
A scalar: REAL for sroti
DOUBLE PRECISION for droti.
A scalar: REAL for sroti
DOUBLE PRECISION for droti.
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 roti interface are the following:
Holds the vector with the number of elements nz.
Holds the vector with the number of elements nz.
Holds the vector with the number of elements nz.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.