LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ dladiv1()

subroutine dladiv1 ( double precision a,
double precision b,
double precision c,
double precision d,
double precision p,
double precision q )

Definition at line 174 of file dladiv.f.

175*
176* -- LAPACK auxiliary routine --
177* -- LAPACK is a software package provided by Univ. of Tennessee, --
178* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
179*
180* .. Scalar Arguments ..
181 DOUBLE PRECISION A, B, C, D, P, Q
182* ..
183*
184* =====================================================================
185*
186* .. Parameters ..
187 DOUBLE PRECISION ONE
188 parameter( one = 1.0d0 )
189*
190* .. Local Scalars ..
191 DOUBLE PRECISION R, T
192* ..
193* .. External Functions ..
194 DOUBLE PRECISION DLADIV2
195 EXTERNAL dladiv2
196* ..
197* .. Executable Statements ..
198*
199 r = d / c
200 t = one / (c + d * r)
201 p = dladiv2(a, b, c, d, r, t)
202 a = -a
203 q = dladiv2(b, a, c, d, r, t)
204*
205 RETURN
206*
207* End of DLADIV1
208*
double precision function dladiv2(a, b, c, d, r, t)
Definition dladiv.f:214
Here is the caller graph for this function: