LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
subroutine claqr0 ( logical  WANTT,
logical  WANTZ,
integer  N,
integer  ILO,
integer  IHI,
complex, dimension( ldh, * )  H,
integer  LDH,
complex, dimension( * )  W,
integer  ILOZ,
integer  IHIZ,
complex, dimension( ldz, * )  Z,
integer  LDZ,
complex, dimension( * )  WORK,
integer  LWORK,
integer  INFO 
)

CLAQR0 computes the eigenvalues of a Hessenberg matrix, and optionally the matrices from the Schur decomposition.

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

Purpose:
    CLAQR0 computes the eigenvalues of a Hessenberg matrix H
    and, optionally, the matrices T and Z from the Schur decomposition
    H = Z T Z**H, where T is an upper triangular matrix (the
    Schur form), and Z is the unitary matrix of Schur vectors.

    Optionally Z may be postmultiplied into an input unitary
    matrix Q so that this routine can give the Schur factorization
    of a matrix A which has been reduced to the Hessenberg form H
    by the unitary matrix Q:  A = Q*H*Q**H = (QZ)*H*(QZ)**H.
Parameters
[in]WANTT
          WANTT is LOGICAL
          = .TRUE. : the full Schur form T is required;
          = .FALSE.: only eigenvalues are required.
[in]WANTZ
          WANTZ is LOGICAL
          = .TRUE. : the matrix of Schur vectors Z is required;
          = .FALSE.: Schur vectors are not required.
[in]N
          N is INTEGER
           The order of the matrix H.  N .GE. 0.
[in]ILO
          ILO is INTEGER
[in]IHI
          IHI is INTEGER
           It is assumed that H is already upper triangular in rows
           and columns 1:ILO-1 and IHI+1:N and, if ILO.GT.1,
           H(ILO,ILO-1) is zero. ILO and IHI are normally set by a
           previous call to CGEBAL, and then passed to CGEHRD when the
           matrix output by CGEBAL is reduced to Hessenberg form.
           Otherwise, ILO and IHI should be set to 1 and N,
           respectively.  If N.GT.0, then 1.LE.ILO.LE.IHI.LE.N.
           If N = 0, then ILO = 1 and IHI = 0.
[in,out]H
          H is COMPLEX array, dimension (LDH,N)
           On entry, the upper Hessenberg matrix H.
           On exit, if INFO = 0 and WANTT is .TRUE., then H
           contains the upper triangular matrix T from the Schur
           decomposition (the Schur form). If INFO = 0 and WANT is
           .FALSE., then the contents of H are unspecified on exit.
           (The output value of H when INFO.GT.0 is given under the
           description of INFO below.)

           This subroutine may explicitly set H(i,j) = 0 for i.GT.j and
           j = 1, 2, ... ILO-1 or j = IHI+1, IHI+2, ... N.
[in]LDH
          LDH is INTEGER
           The leading dimension of the array H. LDH .GE. max(1,N).
[out]W
          W is COMPLEX array, dimension (N)
           The computed eigenvalues of H(ILO:IHI,ILO:IHI) are stored
           in W(ILO:IHI). If WANTT is .TRUE., then the eigenvalues are
           stored in the same order as on the diagonal of the Schur
           form returned in H, with W(i) = H(i,i).
[in]ILOZ
          ILOZ is INTEGER
[in]IHIZ
          IHIZ is INTEGER
           Specify the rows of Z to which transformations must be
           applied if WANTZ is .TRUE..
           1 .LE. ILOZ .LE. ILO; IHI .LE. IHIZ .LE. N.
[in,out]Z
          Z is COMPLEX array, dimension (LDZ,IHI)
           If WANTZ is .FALSE., then Z is not referenced.
           If WANTZ is .TRUE., then Z(ILO:IHI,ILOZ:IHIZ) is
           replaced by Z(ILO:IHI,ILOZ:IHIZ)*U where U is the
           orthogonal Schur factor of H(ILO:IHI,ILO:IHI).
           (The output value of Z when INFO.GT.0 is given under
           the description of INFO below.)
[in]LDZ
          LDZ is INTEGER
           The leading dimension of the array Z.  if WANTZ is .TRUE.
           then LDZ.GE.MAX(1,IHIZ).  Otherwize, LDZ.GE.1.
[out]WORK
          WORK is COMPLEX array, dimension LWORK
           On exit, if LWORK = -1, WORK(1) returns an estimate of
           the optimal value for LWORK.
[in]LWORK
          LWORK is INTEGER
           The dimension of the array WORK.  LWORK .GE. max(1,N)
           is sufficient, but LWORK typically as large as 6*N may
           be required for optimal performance.  A workspace query
           to determine the optimal workspace size is recommended.

           If LWORK = -1, then CLAQR0 does a workspace query.
           In this case, CLAQR0 checks the input parameters and
           estimates the optimal workspace size for the given
           values of N, ILO and IHI.  The estimate is returned
           in WORK(1).  No error message related to LWORK is
           issued by XERBLA.  Neither H nor Z are accessed.
[out]INFO
          INFO is INTEGER
             =  0:  successful exit
           .GT. 0:  if INFO = i, CLAQR0 failed to compute all of
                the eigenvalues.  Elements 1:ilo-1 and i+1:n of WR
                and WI contain those eigenvalues which have been
                successfully computed.  (Failures are rare.)

                If INFO .GT. 0 and WANT is .FALSE., then on exit,
                the remaining unconverged eigenvalues are the eigen-
                values of the upper Hessenberg matrix rows and
                columns ILO through INFO of the final, output
                value of H.

                If INFO .GT. 0 and WANTT is .TRUE., then on exit

           (*)  (initial value of H)*U  = U*(final value of H)

                where U is a unitary matrix.  The final
                value of  H is upper Hessenberg and triangular in
                rows and columns INFO+1 through IHI.

                If INFO .GT. 0 and WANTZ is .TRUE., then on exit

                  (final value of Z(ILO:IHI,ILOZ:IHIZ)
                   =  (initial value of Z(ILO:IHI,ILOZ:IHIZ)*U

                where U is the unitary matrix in (*) (regard-
                less of the value of WANTT.)

                If INFO .GT. 0 and WANTZ is .FALSE., then Z is not
                accessed.
Author
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date
September 2012
Contributors:
Karen Braman and Ralph Byers, Department of Mathematics, University of Kansas, USA
References:
K. Braman, R. Byers and R. Mathias, The Multi-Shift QR Algorithm Part I: Maintaining Well Focused Shifts, and Level 3 Performance, SIAM Journal of Matrix Analysis, volume 23, pages 929–947, 2002.
K. Braman, R. Byers and R. Mathias, The Multi-Shift QR Algorithm Part II: Aggressive Early Deflation, SIAM Journal of Matrix Analysis, volume 23, pages 948–973, 2002.

Definition at line 242 of file claqr0.f.

242 *
243 * -- LAPACK auxiliary routine (version 3.4.2) --
244 * -- LAPACK is a software package provided by Univ. of Tennessee, --
245 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
246 * September 2012
247 *
248 * .. Scalar Arguments ..
249  INTEGER ihi, ihiz, ilo, iloz, info, ldh, ldz, lwork, n
250  LOGICAL wantt, wantz
251 * ..
252 * .. Array Arguments ..
253  COMPLEX h( ldh, * ), w( * ), work( * ), z( ldz, * )
254 * ..
255 *
256 * ================================================================
257 * .. Parameters ..
258 *
259 * ==== Matrices of order NTINY or smaller must be processed by
260 * . CLAHQR because of insufficient subdiagonal scratch space.
261 * . (This is a hard limit.) ====
262  INTEGER ntiny
263  parameter ( ntiny = 11 )
264 *
265 * ==== Exceptional deflation windows: try to cure rare
266 * . slow convergence by varying the size of the
267 * . deflation window after KEXNW iterations. ====
268  INTEGER kexnw
269  parameter ( kexnw = 5 )
270 *
271 * ==== Exceptional shifts: try to cure rare slow convergence
272 * . with ad-hoc exceptional shifts every KEXSH iterations.
273 * . ====
274  INTEGER kexsh
275  parameter ( kexsh = 6 )
276 *
277 * ==== The constant WILK1 is used to form the exceptional
278 * . shifts. ====
279  REAL wilk1
280  parameter ( wilk1 = 0.75e0 )
281  COMPLEX zero, one
282  parameter ( zero = ( 0.0e0, 0.0e0 ),
283  $ one = ( 1.0e0, 0.0e0 ) )
284  REAL two
285  parameter ( two = 2.0e0 )
286 * ..
287 * .. Local Scalars ..
288  COMPLEX aa, bb, cc, cdum, dd, det, rtdisc, swap, tr2
289  REAL s
290  INTEGER i, inf, it, itmax, k, kacc22, kbot, kdu, ks,
291  $ kt, ktop, ku, kv, kwh, kwtop, kwv, ld, ls,
292  $ lwkopt, ndec, ndfl, nh, nho, nibble, nmin, ns,
293  $ nsmax, nsr, nve, nw, nwmax, nwr, nwupbd
294  LOGICAL sorted
295  CHARACTER jbcmpz*2
296 * ..
297 * .. External Functions ..
298  INTEGER ilaenv
299  EXTERNAL ilaenv
300 * ..
301 * .. Local Arrays ..
302  COMPLEX zdum( 1, 1 )
303 * ..
304 * .. External Subroutines ..
305  EXTERNAL clacpy, clahqr, claqr3, claqr4, claqr5
306 * ..
307 * .. Intrinsic Functions ..
308  INTRINSIC abs, aimag, cmplx, int, max, min, mod, REAL,
309  $ sqrt
310 * ..
311 * .. Statement Functions ..
312  REAL cabs1
313 * ..
314 * .. Statement Function definitions ..
315  cabs1( cdum ) = abs( REAL( CDUM ) ) + abs( aimag( cdum ) )
316 * ..
317 * .. Executable Statements ..
318  info = 0
319 *
320 * ==== Quick return for N = 0: nothing to do. ====
321 *
322  IF( n.EQ.0 ) THEN
323  work( 1 ) = one
324  RETURN
325  END IF
326 *
327  IF( n.LE.ntiny ) THEN
328 *
329 * ==== Tiny matrices must use CLAHQR. ====
330 *
331  lwkopt = 1
332  IF( lwork.NE.-1 )
333  $ CALL clahqr( wantt, wantz, n, ilo, ihi, h, ldh, w, iloz,
334  $ ihiz, z, ldz, info )
335  ELSE
336 *
337 * ==== Use small bulge multi-shift QR with aggressive early
338 * . deflation on larger-than-tiny matrices. ====
339 *
340 * ==== Hope for the best. ====
341 *
342  info = 0
343 *
344 * ==== Set up job flags for ILAENV. ====
345 *
346  IF( wantt ) THEN
347  jbcmpz( 1: 1 ) = 'S'
348  ELSE
349  jbcmpz( 1: 1 ) = 'E'
350  END IF
351  IF( wantz ) THEN
352  jbcmpz( 2: 2 ) = 'V'
353  ELSE
354  jbcmpz( 2: 2 ) = 'N'
355  END IF
356 *
357 * ==== NWR = recommended deflation window size. At this
358 * . point, N .GT. NTINY = 11, so there is enough
359 * . subdiagonal workspace for NWR.GE.2 as required.
360 * . (In fact, there is enough subdiagonal space for
361 * . NWR.GE.3.) ====
362 *
363  nwr = ilaenv( 13, 'CLAQR0', jbcmpz, n, ilo, ihi, lwork )
364  nwr = max( 2, nwr )
365  nwr = min( ihi-ilo+1, ( n-1 ) / 3, nwr )
366 *
367 * ==== NSR = recommended number of simultaneous shifts.
368 * . At this point N .GT. NTINY = 11, so there is at
369 * . enough subdiagonal workspace for NSR to be even
370 * . and greater than or equal to two as required. ====
371 *
372  nsr = ilaenv( 15, 'CLAQR0', jbcmpz, n, ilo, ihi, lwork )
373  nsr = min( nsr, ( n+6 ) / 9, ihi-ilo )
374  nsr = max( 2, nsr-mod( nsr, 2 ) )
375 *
376 * ==== Estimate optimal workspace ====
377 *
378 * ==== Workspace query call to CLAQR3 ====
379 *
380  CALL claqr3( wantt, wantz, n, ilo, ihi, nwr+1, h, ldh, iloz,
381  $ ihiz, z, ldz, ls, ld, w, h, ldh, n, h, ldh, n, h,
382  $ ldh, work, -1 )
383 *
384 * ==== Optimal workspace = MAX(CLAQR5, CLAQR3) ====
385 *
386  lwkopt = max( 3*nsr / 2, int( work( 1 ) ) )
387 *
388 * ==== Quick return in case of workspace query. ====
389 *
390  IF( lwork.EQ.-1 ) THEN
391  work( 1 ) = cmplx( lwkopt, 0 )
392  RETURN
393  END IF
394 *
395 * ==== CLAHQR/CLAQR0 crossover point ====
396 *
397  nmin = ilaenv( 12, 'CLAQR0', jbcmpz, n, ilo, ihi, lwork )
398  nmin = max( ntiny, nmin )
399 *
400 * ==== Nibble crossover point ====
401 *
402  nibble = ilaenv( 14, 'CLAQR0', jbcmpz, n, ilo, ihi, lwork )
403  nibble = max( 0, nibble )
404 *
405 * ==== Accumulate reflections during ttswp? Use block
406 * . 2-by-2 structure during matrix-matrix multiply? ====
407 *
408  kacc22 = ilaenv( 16, 'CLAQR0', jbcmpz, n, ilo, ihi, lwork )
409  kacc22 = max( 0, kacc22 )
410  kacc22 = min( 2, kacc22 )
411 *
412 * ==== NWMAX = the largest possible deflation window for
413 * . which there is sufficient workspace. ====
414 *
415  nwmax = min( ( n-1 ) / 3, lwork / 2 )
416  nw = nwmax
417 *
418 * ==== NSMAX = the Largest number of simultaneous shifts
419 * . for which there is sufficient workspace. ====
420 *
421  nsmax = min( ( n+6 ) / 9, 2*lwork / 3 )
422  nsmax = nsmax - mod( nsmax, 2 )
423 *
424 * ==== NDFL: an iteration count restarted at deflation. ====
425 *
426  ndfl = 1
427 *
428 * ==== ITMAX = iteration limit ====
429 *
430  itmax = max( 30, 2*kexsh )*max( 10, ( ihi-ilo+1 ) )
431 *
432 * ==== Last row and column in the active block ====
433 *
434  kbot = ihi
435 *
436 * ==== Main Loop ====
437 *
438  DO 70 it = 1, itmax
439 *
440 * ==== Done when KBOT falls below ILO ====
441 *
442  IF( kbot.LT.ilo )
443  $ GO TO 80
444 *
445 * ==== Locate active block ====
446 *
447  DO 10 k = kbot, ilo + 1, -1
448  IF( h( k, k-1 ).EQ.zero )
449  $ GO TO 20
450  10 CONTINUE
451  k = ilo
452  20 CONTINUE
453  ktop = k
454 *
455 * ==== Select deflation window size:
456 * . Typical Case:
457 * . If possible and advisable, nibble the entire
458 * . active block. If not, use size MIN(NWR,NWMAX)
459 * . or MIN(NWR+1,NWMAX) depending upon which has
460 * . the smaller corresponding subdiagonal entry
461 * . (a heuristic).
462 * .
463 * . Exceptional Case:
464 * . If there have been no deflations in KEXNW or
465 * . more iterations, then vary the deflation window
466 * . size. At first, because, larger windows are,
467 * . in general, more powerful than smaller ones,
468 * . rapidly increase the window to the maximum possible.
469 * . Then, gradually reduce the window size. ====
470 *
471  nh = kbot - ktop + 1
472  nwupbd = min( nh, nwmax )
473  IF( ndfl.LT.kexnw ) THEN
474  nw = min( nwupbd, nwr )
475  ELSE
476  nw = min( nwupbd, 2*nw )
477  END IF
478  IF( nw.LT.nwmax ) THEN
479  IF( nw.GE.nh-1 ) THEN
480  nw = nh
481  ELSE
482  kwtop = kbot - nw + 1
483  IF( cabs1( h( kwtop, kwtop-1 ) ).GT.
484  $ cabs1( h( kwtop-1, kwtop-2 ) ) )nw = nw + 1
485  END IF
486  END IF
487  IF( ndfl.LT.kexnw ) THEN
488  ndec = -1
489  ELSE IF( ndec.GE.0 .OR. nw.GE.nwupbd ) THEN
490  ndec = ndec + 1
491  IF( nw-ndec.LT.2 )
492  $ ndec = 0
493  nw = nw - ndec
494  END IF
495 *
496 * ==== Aggressive early deflation:
497 * . split workspace under the subdiagonal into
498 * . - an nw-by-nw work array V in the lower
499 * . left-hand-corner,
500 * . - an NW-by-at-least-NW-but-more-is-better
501 * . (NW-by-NHO) horizontal work array along
502 * . the bottom edge,
503 * . - an at-least-NW-but-more-is-better (NHV-by-NW)
504 * . vertical work array along the left-hand-edge.
505 * . ====
506 *
507  kv = n - nw + 1
508  kt = nw + 1
509  nho = ( n-nw-1 ) - kt + 1
510  kwv = nw + 2
511  nve = ( n-nw ) - kwv + 1
512 *
513 * ==== Aggressive early deflation ====
514 *
515  CALL claqr3( wantt, wantz, n, ktop, kbot, nw, h, ldh, iloz,
516  $ ihiz, z, ldz, ls, ld, w, h( kv, 1 ), ldh, nho,
517  $ h( kv, kt ), ldh, nve, h( kwv, 1 ), ldh, work,
518  $ lwork )
519 *
520 * ==== Adjust KBOT accounting for new deflations. ====
521 *
522  kbot = kbot - ld
523 *
524 * ==== KS points to the shifts. ====
525 *
526  ks = kbot - ls + 1
527 *
528 * ==== Skip an expensive QR sweep if there is a (partly
529 * . heuristic) reason to expect that many eigenvalues
530 * . will deflate without it. Here, the QR sweep is
531 * . skipped if many eigenvalues have just been deflated
532 * . or if the remaining active block is small.
533 *
534  IF( ( ld.EQ.0 ) .OR. ( ( 100*ld.LE.nw*nibble ) .AND. ( kbot-
535  $ ktop+1.GT.min( nmin, nwmax ) ) ) ) THEN
536 *
537 * ==== NS = nominal number of simultaneous shifts.
538 * . This may be lowered (slightly) if CLAQR3
539 * . did not provide that many shifts. ====
540 *
541  ns = min( nsmax, nsr, max( 2, kbot-ktop ) )
542  ns = ns - mod( ns, 2 )
543 *
544 * ==== If there have been no deflations
545 * . in a multiple of KEXSH iterations,
546 * . then try exceptional shifts.
547 * . Otherwise use shifts provided by
548 * . CLAQR3 above or from the eigenvalues
549 * . of a trailing principal submatrix. ====
550 *
551  IF( mod( ndfl, kexsh ).EQ.0 ) THEN
552  ks = kbot - ns + 1
553  DO 30 i = kbot, ks + 1, -2
554  w( i ) = h( i, i ) + wilk1*cabs1( h( i, i-1 ) )
555  w( i-1 ) = w( i )
556  30 CONTINUE
557  ELSE
558 *
559 * ==== Got NS/2 or fewer shifts? Use CLAQR4 or
560 * . CLAHQR on a trailing principal submatrix to
561 * . get more. (Since NS.LE.NSMAX.LE.(N+6)/9,
562 * . there is enough space below the subdiagonal
563 * . to fit an NS-by-NS scratch array.) ====
564 *
565  IF( kbot-ks+1.LE.ns / 2 ) THEN
566  ks = kbot - ns + 1
567  kt = n - ns + 1
568  CALL clacpy( 'A', ns, ns, h( ks, ks ), ldh,
569  $ h( kt, 1 ), ldh )
570  IF( ns.GT.nmin ) THEN
571  CALL claqr4( .false., .false., ns, 1, ns,
572  $ h( kt, 1 ), ldh, w( ks ), 1, 1,
573  $ zdum, 1, work, lwork, inf )
574  ELSE
575  CALL clahqr( .false., .false., ns, 1, ns,
576  $ h( kt, 1 ), ldh, w( ks ), 1, 1,
577  $ zdum, 1, inf )
578  END IF
579  ks = ks + inf
580 *
581 * ==== In case of a rare QR failure use
582 * . eigenvalues of the trailing 2-by-2
583 * . principal submatrix. Scale to avoid
584 * . overflows, underflows and subnormals.
585 * . (The scale factor S can not be zero,
586 * . because H(KBOT,KBOT-1) is nonzero.) ====
587 *
588  IF( ks.GE.kbot ) THEN
589  s = cabs1( h( kbot-1, kbot-1 ) ) +
590  $ cabs1( h( kbot, kbot-1 ) ) +
591  $ cabs1( h( kbot-1, kbot ) ) +
592  $ cabs1( h( kbot, kbot ) )
593  aa = h( kbot-1, kbot-1 ) / s
594  cc = h( kbot, kbot-1 ) / s
595  bb = h( kbot-1, kbot ) / s
596  dd = h( kbot, kbot ) / s
597  tr2 = ( aa+dd ) / two
598  det = ( aa-tr2 )*( dd-tr2 ) - bb*cc
599  rtdisc = sqrt( -det )
600  w( kbot-1 ) = ( tr2+rtdisc )*s
601  w( kbot ) = ( tr2-rtdisc )*s
602 *
603  ks = kbot - 1
604  END IF
605  END IF
606 *
607  IF( kbot-ks+1.GT.ns ) THEN
608 *
609 * ==== Sort the shifts (Helps a little) ====
610 *
611  sorted = .false.
612  DO 50 k = kbot, ks + 1, -1
613  IF( sorted )
614  $ GO TO 60
615  sorted = .true.
616  DO 40 i = ks, k - 1
617  IF( cabs1( w( i ) ).LT.cabs1( w( i+1 ) ) )
618  $ THEN
619  sorted = .false.
620  swap = w( i )
621  w( i ) = w( i+1 )
622  w( i+1 ) = swap
623  END IF
624  40 CONTINUE
625  50 CONTINUE
626  60 CONTINUE
627  END IF
628  END IF
629 *
630 * ==== If there are only two shifts, then use
631 * . only one. ====
632 *
633  IF( kbot-ks+1.EQ.2 ) THEN
634  IF( cabs1( w( kbot )-h( kbot, kbot ) ).LT.
635  $ cabs1( w( kbot-1 )-h( kbot, kbot ) ) ) THEN
636  w( kbot-1 ) = w( kbot )
637  ELSE
638  w( kbot ) = w( kbot-1 )
639  END IF
640  END IF
641 *
642 * ==== Use up to NS of the the smallest magnatiude
643 * . shifts. If there aren't NS shifts available,
644 * . then use them all, possibly dropping one to
645 * . make the number of shifts even. ====
646 *
647  ns = min( ns, kbot-ks+1 )
648  ns = ns - mod( ns, 2 )
649  ks = kbot - ns + 1
650 *
651 * ==== Small-bulge multi-shift QR sweep:
652 * . split workspace under the subdiagonal into
653 * . - a KDU-by-KDU work array U in the lower
654 * . left-hand-corner,
655 * . - a KDU-by-at-least-KDU-but-more-is-better
656 * . (KDU-by-NHo) horizontal work array WH along
657 * . the bottom edge,
658 * . - and an at-least-KDU-but-more-is-better-by-KDU
659 * . (NVE-by-KDU) vertical work WV arrow along
660 * . the left-hand-edge. ====
661 *
662  kdu = 3*ns - 3
663  ku = n - kdu + 1
664  kwh = kdu + 1
665  nho = ( n-kdu+1-4 ) - ( kdu+1 ) + 1
666  kwv = kdu + 4
667  nve = n - kdu - kwv + 1
668 *
669 * ==== Small-bulge multi-shift QR sweep ====
670 *
671  CALL claqr5( wantt, wantz, kacc22, n, ktop, kbot, ns,
672  $ w( ks ), h, ldh, iloz, ihiz, z, ldz, work,
673  $ 3, h( ku, 1 ), ldh, nve, h( kwv, 1 ), ldh,
674  $ nho, h( ku, kwh ), ldh )
675  END IF
676 *
677 * ==== Note progress (or the lack of it). ====
678 *
679  IF( ld.GT.0 ) THEN
680  ndfl = 1
681  ELSE
682  ndfl = ndfl + 1
683  END IF
684 *
685 * ==== End of main loop ====
686  70 CONTINUE
687 *
688 * ==== Iteration limit exceeded. Set INFO to show where
689 * . the problem occurred and exit. ====
690 *
691  info = kbot
692  80 CONTINUE
693  END IF
694 *
695 * ==== Return the optimal value of LWORK. ====
696 *
697  work( 1 ) = cmplx( lwkopt, 0 )
698 *
699 * ==== End of CLAQR0 ====
700 *
subroutine clahqr(WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, IHIZ, Z, LDZ, INFO)
CLAHQR computes the eigenvalues and Schur factorization of an upper Hessenberg matrix, using the double-shift/single-shift QR algorithm.
Definition: clahqr.f:197
subroutine claqr4(WANTT, WANTZ, N, ILO, IHI, H, LDH, W, ILOZ, IHIZ, Z, LDZ, WORK, LWORK, INFO)
CLAQR4 computes the eigenvalues of a Hessenberg matrix, and optionally the matrices from the Schur de...
Definition: claqr4.f:251
subroutine claqr3(WANTT, WANTZ, N, KTOP, KBOT, NW, H, LDH, ILOZ, IHIZ, Z, LDZ, NS, ND, SH, V, LDV, NH, T, LDT, NV, WV, LDWV, WORK, LWORK)
CLAQR3 performs the unitary similarity transformation of a Hessenberg matrix to detect and deflate fu...
Definition: claqr3.f:268
subroutine clacpy(UPLO, M, N, A, LDA, B, LDB)
CLACPY copies all or part of one two-dimensional array to another.
Definition: clacpy.f:105
integer function ilaenv(ISPEC, NAME, OPTS, N1, N2, N3, N4)
Definition: tstiee.f:83
subroutine claqr5(WANTT, WANTZ, KACC22, N, KTOP, KBOT, NSHFTS, S, H, LDH, ILOZ, IHIZ, Z, LDZ, V, LDV, U, LDU, NV, WV, LDWV, NH, WH, LDWH)
CLAQR5 performs a single small-bulge multi-shift QR sweep.
Definition: claqr5.f:253

Here is the call graph for this function:

Here is the caller graph for this function: