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

◆ sladiv1()

subroutine sladiv1 ( real a,
real b,
real c,
real d,
real p,
real q )

Definition at line 174 of file sladiv.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 REAL A, B, C, D, P, Q
182* ..
183*
184* =====================================================================
185*
186* .. Parameters ..
187 REAL ONE
188 parameter( one = 1.0e0 )
189*
190* .. Local Scalars ..
191 REAL R, T
192* ..
193* .. External Functions ..
194 REAL SLADIV2
195 EXTERNAL sladiv2
196* ..
197* .. Executable Statements ..
198*
199 r = d / c
200 t = one / (c + d * r)
201 p = sladiv2(a, b, c, d, r, t)
202 a = -a
203 q = sladiv2(b, a, c, d, r, t)
204*
205 RETURN
206*
207* End of SLADIV1
208*
real function sladiv2(a, b, c, d, r, t)
Definition sladiv.f:214
Here is the caller graph for this function: