|
_ROTM(3F) _ROTM(3F)
drotm, srotm - BLAS Level-1. Applies a modified Givens rotation.
FORTRAN SYNOPSIS
subroutine drotm( n, x, incx, y, incy, param )
integer n, incx, incy
double precision x( (n-1)*|incx|+1 ), y( (n-1)*|incy|+1 )
double precision param( 5 )
subroutine srotm( n, x, incx, y, incy, param )
integer n, incx, incy
real x( (n-1)*|incx|+1 ), y( (n-1)*|incy|+1 )
real param( 5 )
DROTM and SROTM apply the modified Givens rotation computed by drotmg or
srotmg.
n (input)
Number of planar points to be rotated. If n<=0, the routine
returns without any computattion.
x (input/output)
On input, x contains the x-coordinate of each planar point to be
rotated.
On output, x contains the x-coordinate of each rotated planar
point.
incx (input)
Increment between elemnents of x.
If incx=0, the results will be unpredictable.
y (input/output)
On input, y contains the y-coordinate of each planer point to be
rotated.
On output, y contains the y-coordinate of each rotated planar
point.
incy (input)
Increment between elemnents of y.
If incy=0, the results will be unpredictable.
param (output)
This array contains rotation matrix information.
Page 1
_ROTM(3F) _ROTM(3F)
SEE ALSO
DROTMG or SROTMG.
PPPPaaaaggggeeee 2222 [ Back ]
|
Similar pages
|
Name
|
OS
|
Title
|
rotmg
|
IRIX
|
BLAS Level-1. Compute the elements of a modified Givens plane rotation. FORTRAN SYNOPSIS subroutine drotmg( d1
|
copy
|
IRIX
|
BLAS level ONE copy subroutines FORTRAN 77 SYNOPSIS subroutine dcopy( n, dx, incx, dy, incy ) integer incx, in
|
swap
|
IRIX
|
BLAS level ONE swap subroutines FORTRAN 77 SYNOPSIS subroutine dswap( n, dx, incx, dy, incy ) integer incx, in
|
axpy
|
IRIX
|
BLAS level ONE axpy subroutines FORTRAN 77 SYNOPSIS subroutine daxpy( n, a, x, incx, y, incy ) integer incx, i
|
ger
|
IRIX
|
BLAS Level Two Rank 1 Operation FORTRAN 77 SYNOPSIS subroutine dger( m, n, alpha, x, incx, y, incy, a, lda ) i
|
scal
|
IRIX
|
BLAS level ONE scaling subroutines FORTRAN 77 SYNOPSIS subroutine dscal( n, a, x, incx ) integer incx, n doubl
|
dot
|
IRIX
|
BLAS level ONE, dot product functions FORTRAN 77 SYNOPSIS double precision ddot( n, x, incx, y, incy ) integer
|
gbmv
|
IRIX
|
BLAS Level Two Matrix-Vector Product FORTRAN 77 SYNOPSIS subroutine dgbmv( trans,m,n,kl,ku,alpha,a,lda,x,incx,
|
gemv
|
IRIX
|
BLAS Level Two Matrix-Vector Product FORTRAN 77 SYNOPSIS subroutine dgemv( trans,m,n,alpha,a,lda,x,incx,beta,y
|
asum
|
IRIX
|
BLAS level ONE L1 norm functions. FORTRAN 77 SYNOPSIS double precision dasum( n, x, incx ) integer incx, n dou
|
|
|