LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine sladiv1 ( real  A,
real  B,
real  C,
real  D,
real  P,
real  Q 
)

Definition at line 179 of file sladiv.f.

179 *
180 * -- LAPACK auxiliary routine (version 3.5.0) --
181 * -- LAPACK is a software package provided by Univ. of Tennessee, --
182 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
183 * January 2013
184 *
185 * .. Scalar Arguments ..
186  REAL a, b, c, d, p, q
187 * ..
188 *
189 * =====================================================================
190 *
191 * .. Parameters ..
192  REAL one
193  parameter ( one = 1.0e0 )
194 *
195 * .. Local Scalars ..
196  REAL r, t
197 * ..
198 * .. External Functions ..
199  REAL sladiv2
200  EXTERNAL sladiv2
201 * ..
202 * .. Executable Statements ..
203 *
204  r = d / c
205  t = one / (c + d * r)
206  p = sladiv2(a, b, c, d, r, t)
207  a = -a
208  q = sladiv2(b, a, c, d, r, t)
209 *
210  RETURN
211 *
212 * End of SLADIV1
213 *
real function sladiv2(A, B, C, D, R, T)
Definition: sladiv.f:217

Here is the caller graph for this function: