ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fprota.f
Go to the documentation of this file.
1  subroutine fprota(cos,sin,a,b)
2  implicit none
3 c subroutine fprota applies a givens rotation to a and b.
4 c ..
5 c ..scalar arguments..
6  real*8 cos,sin,a,b
7 c ..local scalars..
8  real*8 stor1,stor2
9 c ..
10  stor1 = a
11  stor2 = b
12  b = cos*stor2+sin*stor1
13  a = cos*stor1-sin*stor2
14  return
15  end
subroutine fprota(cos, sin, a, b)
Definition: fprota.f:1