計算ルーチン: インプリシットな QL または QR を用いて実対称行列から縮約された : (実対称三重対角行列の全ての固有値と固有ベクトルの計算)

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

ホーム > LAPACKサンプルプログラム目次 > 計算ルーチン > インプリシットな QL または QR を用いて実対称行列から縮約された

概要

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

入力データ

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

このデータをダウンロード
DSTEQR Example Program Data
  4                           :Value of N
 -6.99   7.92   2.34   0.32
 -0.44  -2.63  -1.18          :End of matrix T

出力結果

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

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

 Eigenvalues
    -7.0037 -0.4059  2.0028  8.9968

 Eigenvectors
          1       2       3       4
 1   0.9995  0.0109  0.0167  0.0255
 2   0.0310 -0.1627 -0.3408 -0.9254
 3   0.0089 -0.5170 -0.7696  0.3746
 4   0.0014 -0.8403  0.5397 -0.0509

ソースコード

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

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


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

!     DSTEQR Example Program Text

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

!     .. Use Statements ..
      Use lapack_example_aux, Only: nagf_file_print_matrix_real_gen
      Use lapack_interfaces, Only: dsteqr
      Use lapack_precision, Only: dp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter :: nin = 5, nout = 6
!     .. Local Scalars ..
      Integer :: i, ifail, info, ldz, n
!     .. Local Arrays ..
      Real (Kind=dp), Allocatable :: d(:), e(:), work(:), z(:, :)
!     .. Executable Statements ..
      Write (nout, *) 'DSTEQR Example Program Results'
!     Skip heading in data file
      Read (nin, *)
      Read (nin, *) n
      ldz = n
      Allocate (d(n), e(n-1), work(2*n-2), z(ldz,n))

!     Read T from data file

      Read (nin, *) d(1:n)
      Read (nin, *) e(1:n-1)

!     Calculate all the eigenvalues and eigenvectors of T
      Call dsteqr('I', n, d, e, z, ldz, work, 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)

!       Standardize the eigenvectors so that first elements are non-negative.
        Do i = 1, n
          If (z(1,i)<0.0_dp) Then
            z(1:n, i) = -z(1:n, i)
          End If
        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_real_gen('General', ' ', n, n, z, ldz, &
          'Eigenvectors', ifail)

      End If

100   Format (3X, (8F8.4))
    End Program


ご案内
関連情報
Privacy Policy  /  Trademarks