計算ルーチン: 複素エルミート帯行列の対称三重対角形へのユニタリ縮約

LAPACKサンプルソースコード : 使用ルーチン名:ZHBTRD

ホーム > LAPACKサンプルプログラム目次 > 計算ルーチン > 複素エルミート帯行列の対称三重対角形へのユニタリ縮約

概要

本サンプルはFortran言語によりLAPACKルーチンZHBTRDを利用するサンプルプログラムです。

入力データ

(本ルーチンの詳細はZHBTRD のマニュアルページを参照)

このデータをダウンロード
ZHBTRD Example Program Data
  4  2                                                     :Values of N and KD
  'L'                                                      :Value of UPLO
 (-3.13, 0.00)
 ( 1.94, 2.10) (-1.91, 0.00)
 (-3.40,-0.25) (-0.82, 0.89) (-2.87, 0.00)
               (-0.67,-0.34) (-2.10, 0.16) ( 0.50, 0.00)   :End of matrix A

出力結果

(本ルーチンの詳細はZHBTRD のマニュアルページを参照)

この出力例をダウンロード
 ZHBTRD Example Program Results

 Eigenvalues
        -7.0042           -4.0038            0.5968            3.0012

 Eigenvectors
                    1                 2                 3                 4
 1  ( 0.7293, 0.0000) (-0.2128, 0.1511) (-0.3354,-0.1604) (-0.5114,-0.0163)
 2  (-0.1654,-0.2046) ( 0.7316, 0.0000) (-0.2804,-0.3413) (-0.2374,-0.3796)
 3  ( 0.6081, 0.0301) ( 0.3910,-0.3843) (-0.0144, 0.1532) ( 0.5523,-0.0000)
 4  ( 0.1653,-0.0303) ( 0.2775,-0.1378) ( 0.8019, 0.0000) (-0.4517, 0.1693)

ソースコード

(本ルーチンの詳細はZHBTRD のマニュアルページを参照)

※本サンプルソースコードのご利用手順は「サンプルのコンパイル及び実行方法」をご参照下さい。


このソースコードをダウンロード
    Program zhbtrd_example

!     ZHBTRD Example Program Text

!     Copyright 2017, Numerical Algorithms Group Ltd. http://www.nag.com

!     .. Use Statements ..
      Use blas_interfaces, Only: dznrm2
      Use lapack_example_aux, Only: nagf_file_print_matrix_complex_gen_comp
      Use lapack_interfaces, Only: zhbtrd, zsteqr
      Use lapack_precision, Only: dp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter :: nin = 5, nout = 6
!     .. Local Scalars ..
      Complex (Kind=dp) :: scal
      Integer :: i, ifail, info, j, k, kd, ldab, ldq, n
      Character (1) :: uplo
!     .. Local Arrays ..
      Complex (Kind=dp), Allocatable :: ab(:, :), q(:, :), work(:)
      Real (Kind=dp), Allocatable :: d(:), e(:), rwork(:)
      Character (1) :: clabs(1), rlabs(1)
!     .. Intrinsic Procedures ..
      Intrinsic :: abs, conjg, max, maxloc, min
!     .. Executable Statements ..
      Write (nout, *) 'ZHBTRD Example Program Results'
!     Skip heading in data file
      Read (nin, *)
      Read (nin, *) n, kd
      ldab = kd + 1
      ldq = n
      Allocate (ab(ldab,n), q(ldq,n), work(n), d(n), e(n-1), rwork(2*n-2))

!     Read A from data file

      Read (nin, *) uplo
      If (uplo=='U') Then
        Do i = 1, n
          Read (nin, *)(ab(kd+1+i-j,j), j=i, min(n,i+kd))
        End Do
      Else If (uplo=='L') Then
        Do i = 1, n
          Read (nin, *)(ab(1+i-j,j), j=max(1,i-kd), i)
        End Do
      End If

!     Reduce A to tridiagonal form T = (Q**H)*A*Q (and form Q)
      Call zhbtrd('V', uplo, n, kd, ab, ldab, d, e, q, ldq, work, info)

!     Calculate all the eigenvalues and eigenvectors of A
      Call zsteqr('V', n, d, e, q, ldq, rwork, info)

      Write (nout, *)
      If (info>0) Then
        Write (nout, *) 'Failure to converge.'
      Else

!       Print eigenvalues and eigenvectors

        Write (nout, *) 'Eigenvalues'
        Write (nout, 100) d(1:n)
        Write (nout, *)
        Flush (nout)

!       Normalize the eigenvectors, largest element real
        Do i = 1, n
          rwork(1:n) = abs(q(1:n,i))
          k = maxloc(rwork(1:n), 1)
          scal = conjg(q(k,i))/abs(q(k,i))/dznrm2(n, q(1,i), 1)
          q(1:n, i) = q(1:n, i)*scal
        End Do

!       ifail: behaviour on error exit
!              =0 for hard exit, =1 for quiet-soft, =-1 for noisy-soft
        ifail = 0
        Call nagf_file_print_matrix_complex_gen_comp('General', ' ', n, n, q, &
          ldq, 'Bracketed', 'F7.4', 'Eigenvectors', 'Integer', rlabs, &
          'Integer', clabs, 80, 0, ifail)

      End If

100   Format (8X, 4(F7.4,11X,:))
    End Program


ご案内
関連情報
Privacy Policy  /  Trademarks