Blame thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/reference/srotf.f
|
kusano |
2b45e8 |
subroutine srotf (n,sx,incx,sy,incy,c,s)
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c applies a plane rotation.
|
|
kusano |
2b45e8 |
c jack dongarra, linpack, 3/11/78.
|
|
kusano |
2b45e8 |
c modified 12/3/93, array(1) declarations changed to array(*)
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
real sx(*),sy(*),stemp,c,s
|
|
kusano |
2b45e8 |
integer i,incx,incy,ix,iy,n
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
if(n.le.0)return
|
|
kusano |
2b45e8 |
if(incx.eq.1.and.incy.eq.1)go to 20
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c code for unequal increments or equal increments not equal
|
|
kusano |
2b45e8 |
c to 1
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
ix = 1
|
|
kusano |
2b45e8 |
iy = 1
|
|
kusano |
2b45e8 |
if(incx.lt.0)ix = (-n+1)*incx + 1
|
|
kusano |
2b45e8 |
if(incy.lt.0)iy = (-n+1)*incy + 1
|
|
kusano |
2b45e8 |
do 10 i = 1,n
|
|
kusano |
2b45e8 |
stemp = c*sx(ix) + s*sy(iy)
|
|
kusano |
2b45e8 |
sy(iy) = c*sy(iy) - s*sx(ix)
|
|
kusano |
2b45e8 |
sx(ix) = stemp
|
|
kusano |
2b45e8 |
ix = ix + incx
|
|
kusano |
2b45e8 |
iy = iy + incy
|
|
kusano |
2b45e8 |
10 continue
|
|
kusano |
2b45e8 |
return
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
c code for both increments equal to 1
|
|
kusano |
2b45e8 |
c
|
|
kusano |
2b45e8 |
20 do 30 i = 1,n
|
|
kusano |
2b45e8 |
stemp = c*sx(i) + s*sy(i)
|
|
kusano |
2b45e8 |
sy(i) = c*sy(i) - s*sx(i)
|
|
kusano |
2b45e8 |
sx(i) = stemp
|
|
kusano |
2b45e8 |
30 continue
|
|
kusano |
2b45e8 |
return
|
|
kusano |
2b45e8 |
end
|