ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fpgivs.f
Go to the documentation of this file.
1  subroutine fpgivs(piv,ww,cos,sin)
2  implicit none
3 c subroutine fpgivs calculates the parameters of a givens
4 c transformation .
5 c ..
6 c ..scalar arguments..
7  real*8 piv,ww,cos,sin
8 c ..local scalars..
9  real*8 dd,one,store
10 c ..function references..
11  real*8 abs,sqrt
12 c ..
13  one = 0.1e+01
14  store = abs(piv)
15  if(store.ge.ww) dd = store*sqrt(one+(ww/piv)**2)
16  if(store.lt.ww) dd = ww*sqrt(one+(piv/ww)**2)
17  cos = ww/dd
18  sin = piv/dd
19  ww = dd
20  return
21  end
subroutine fpgivs(piv, ww, cos, sin)
Definition: fpgivs.f:1