計算ルーチン: 直交相似変換を用いた実行列のシュール分解の並び替え

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

ホーム > LAPACKサンプルプログラム目次 > 計算ルーチン > 直交相似変換を用いた実行列のシュール分解の並び替え

概要

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

入力データ

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

このデータをダウンロード
DTREXC Example Program Data
  4                           :Value of N
  0.80  -0.11   0.01   0.03
  0.00  -0.10   0.25   0.35
  0.00  -0.65  -0.10   0.20
  0.00   0.00   0.00  -0.10   :End of matrix T
  2  1                        :Values of IFST and ILST

出力結果

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

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

 Reordered Schur form
          1       2       3       4
 1  -0.1000 -0.6463  0.0874  0.2010
 2   0.2514 -0.1000  0.0927  0.3505
 3   0.0000  0.0000  0.8000 -0.0117
 4   0.0000  0.0000  0.0000 -0.1000

ソースコード

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

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


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

!     DTREXC 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: dtrexc
      Use lapack_precision, Only: dp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Integer, Parameter :: nin = 5, nout = 6
!     .. Local Scalars ..
      Integer :: i, ifail, ifst, ilst, info, ldq, ldt, n
!     .. Local Arrays ..
      Real (Kind=dp), Allocatable :: q(:, :), t(:, :), work(:)
!     .. Executable Statements ..
      Write (nout, *) 'DTREXC Example Program Results'
      Write (nout, *)
      Flush (nout)
!     Skip heading in data file
      Read (nin, *)
      Read (nin, *) n
      ldq = 1
      ldt = n
      Allocate (q(ldq,1), t(ldt,n), work(n))

!     Read T from data file

      Read (nin, *)(t(i,1:n), i=1, n)

!     Read the row indices

      Read (nin, *) ifst, ilst

!     Reorder the Schur factor T

      Call dtrexc('No update', n, t, ldt, q, ldq, ifst, ilst, work, info)
      If (info>0) Then
        Write (nout, 100) info, ilst
        Write (nout, *)
        Flush (nout)
      End If

!     Print reordered Schur factor

!     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, t, ldt, &
        'Reordered Schur form', ifail)

100   Format (' Reordering could not be completed. INFO = ', I3, ' ILST = ', &
        I5)
    End Program


ご案内
関連情報
Privacy Policy  /  Trademarks