LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ slaqz1()

subroutine slaqz1 ( real, dimension( lda, * ), intent(in)  A,
integer, intent(in)  LDA,
real, dimension( ldb, * ), intent(in)  B,
integer, intent(in)  LDB,
real, intent(in)  SR1,
real, intent(in)  SR2,
real, intent(in)  SI,
real, intent(in)  BETA1,
real, intent(in)  BETA2,
real, dimension( * ), intent(out)  V 
)

SLAQZ1

Download SLAQZ1 + dependencies [TGZ] [ZIP] [TXT]

Purpose:
      Given a 3-by-3 matrix pencil (A,B), SLAQZ1 sets v to a
      scalar multiple of the first column of the product

      (*)  K = (A - (beta2*sr2 - i*si)*B)*B^(-1)*(beta1*A - (sr2 + i*si2)*B)*B^(-1).

      It is assumed that either

              1) sr1 = sr2
          or
              2) si = 0.

      This is useful for starting double implicit shift bulges
      in the QZ algorithm.
Parameters
[in]A
          A is REAL array, dimension (LDA,N)
              The 3-by-3 matrix A in (*).
[in]LDA
          LDA is INTEGER
              The leading dimension of A as declared in
              the calling procedure.
[in]B
          B is REAL array, dimension (LDB,N)
              The 3-by-3 matrix B in (*).
[in]LDB
          LDB is INTEGER
              The leading dimension of B as declared in
              the calling procedure.
[in]SR1
          SR1 is REAL
[in]SR2
          SR2 is REAL
[in]SI
          SI is REAL
[in]BETA1
          BETA1 is REAL
[in]BETA2
          BETA2 is REAL
[out]V
          V is REAL array, dimension (N)
              A scalar multiple of the first column of the
              matrix K in (*).
Author
Thijs Steel, KU Leuven
Date
May 2020

Definition at line 125 of file slaqz1.f.

127  IMPLICIT NONE
128 *
129 * Arguments
130  INTEGER, INTENT( IN ) :: LDA, LDB
131  REAL, INTENT( IN ) :: A( LDA, * ), B( LDB, * ), SR1, SR2, SI,
132  $ BETA1, BETA2
133  REAL, INTENT( OUT ) :: V( * )
134 *
135 * Parameters
136  REAL :: ZERO, ONE, HALF
137  parameter( zero = 0.0, one = 1.0, half = 0.5 )
138 *
139 * Local scalars
140  REAL :: W( 2 ), SAFMIN, SAFMAX, SCALE1, SCALE2
141 *
142 * External Functions
143  REAL, EXTERNAL :: SLAMCH
144  LOGICAL, EXTERNAL :: SISNAN
145 *
146  safmin = slamch( 'SAFE MINIMUM' )
147  safmax = one/safmin
148 *
149 * Calculate first shifted vector
150 *
151  w( 1 ) = beta1*a( 1, 1 )-sr1*b( 1, 1 )
152  w( 2 ) = beta1*a( 2, 1 )-sr1*b( 2, 1 )
153  scale1 = sqrt( abs( w( 1 ) ) ) * sqrt( abs( w( 2 ) ) )
154  IF( scale1 .GE. safmin .AND. scale1 .LE. safmax ) THEN
155  w( 1 ) = w( 1 )/scale1
156  w( 2 ) = w( 2 )/scale1
157  END IF
158 *
159 * Solve linear system
160 *
161  w( 2 ) = w( 2 )/b( 2, 2 )
162  w( 1 ) = ( w( 1 )-b( 1, 2 )*w( 2 ) )/b( 1, 1 )
163  scale2 = sqrt( abs( w( 1 ) ) ) * sqrt( abs( w( 2 ) ) )
164  IF( scale2 .GE. safmin .AND. scale2 .LE. safmax ) THEN
165  w( 1 ) = w( 1 )/scale2
166  w( 2 ) = w( 2 )/scale2
167  END IF
168 *
169 * Apply second shift
170 *
171  v( 1 ) = beta2*( a( 1, 1 )*w( 1 )+a( 1, 2 )*w( 2 ) )-sr2*( b( 1,
172  $ 1 )*w( 1 )+b( 1, 2 )*w( 2 ) )
173  v( 2 ) = beta2*( a( 2, 1 )*w( 1 )+a( 2, 2 )*w( 2 ) )-sr2*( b( 2,
174  $ 1 )*w( 1 )+b( 2, 2 )*w( 2 ) )
175  v( 3 ) = beta2*( a( 3, 1 )*w( 1 )+a( 3, 2 )*w( 2 ) )-sr2*( b( 3,
176  $ 1 )*w( 1 )+b( 3, 2 )*w( 2 ) )
177 *
178 * Account for imaginary part
179 *
180  v( 1 ) = v( 1 )+si*si*b( 1, 1 )/scale1/scale2
181 *
182 * Check for overflow
183 *
184  IF( abs( v( 1 ) ).GT.safmax .OR. abs( v( 2 ) ) .GT. safmax .OR.
185  $ abs( v( 3 ) ).GT.safmax .OR. sisnan( v( 1 ) ) .OR.
186  $ sisnan( v( 2 ) ) .OR. sisnan( v( 3 ) ) ) THEN
187  v( 1 ) = zero
188  v( 2 ) = zero
189  v( 3 ) = zero
190  END IF
191 *
192 * End of SLAQZ1
193 *
logical function sisnan(SIN)
SISNAN tests input for NaN.
Definition: sisnan.f:59
real function slamch(CMACH)
SLAMCH
Definition: slamch.f:68
Here is the caller graph for this function: