計算ルーチン: 実対称半正定値行列のコレスキー分解

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

ホーム > LAPACKサンプルプログラム目次 > 計算ルーチン > 実対称半正定値行列のコレスキー分解

概要

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

入力データ

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

このデータをダウンロード
DPSTRF Example Program Data
  5 'L'                               : n, uplo
  2.51
  4.04   8.22
  3.34   7.38   7.06
  1.34   2.68   2.24   0.96
  1.29   2.44   2.14   0.80   0.74    : End of matrix A

出力結果

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

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

 Computed rank:   3

 Factor
             1          2          3          4          5
 1      2.8671
 2      1.4091     0.7242
 3      2.5741    -0.3965     0.5262
 4      0.9348     0.0315    -0.2920     0.0000
 5      0.8510     0.1254    -0.0018     0.0000     0.0000

 PIV
             2          1          3          4          5

ソースコード

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

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


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

!     DPSTRF Example Program Text

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

!     .. Use Statements ..
      Use lapack_example_aux, Only: nagf_file_print_matrix_integer_comp, &
        nagf_file_print_matrix_real_gen
      Use lapack_interfaces, Only: dpstrf
      Use lapack_precision, Only: dp
!     .. Implicit None Statement ..
      Implicit None
!     .. Parameters ..
      Real (Kind=dp), Parameter :: zero = 0.0E0_dp
      Integer, Parameter :: nin = 5, nout = 6
!     .. Local Scalars ..
      Real (Kind=dp) :: tol
      Integer :: i, ifail, info, j, lda, n, rank
      Character (1) :: uplo
!     .. Local Arrays ..
      Real (Kind=dp), Allocatable :: a(:, :), work(:)
      Integer, Allocatable :: piv(:)
      Character (1) :: clabs(1), rlabs(1)
!     .. Executable Statements ..
      Write (nout, *) 'DPSTRF Example Program Results'
!     Skip heading in data file
      Read (nin, *)
      Read (nin, *) n, uplo
      lda = n
      Allocate (a(lda,n), piv(n), work(2*n))

!     Read A from data file
      If (uplo=='U') Then
        Read (nin, *)(a(i,i:n), i=1, n)
      Else If (uplo=='L') Then
        Read (nin, *)(a(i,1:i), i=1, n)
      End If
      tol = -1.0_dp

!     Factorize A
      Call dpstrf(uplo, n, a, lda, piv, rank, tol, work, info)

!     Zero out columns rank+1 to n
      If (uplo=='U') Then
        Do j = rank + 1, n
          a(rank+1:j, j) = zero
        End Do
      Else If (uplo=='L') Then
        Do j = rank + 1, n
          a(j:n, j) = zero
        End Do
      End If

!     Print rank
      Write (nout, *)
      Write (nout, '(1X,A15,I3)') 'Computed rank: ', rank

!     Print factor
      Write (nout, *)
      Flush (nout)
      ifail = 0
      Call nagf_file_print_matrix_real_gen(uplo, 'Nonunit', n, n, a, lda, &
        'Factor', ifail)

!     Print pivot indices
      Write (nout, *)
      Write (nout, *) 'PIV'
      Flush (nout)

      ifail = 0
      Call nagf_file_print_matrix_integer_comp('General', 'Non-unit', 1, n, &
        piv, 1, 'I11', ' ', 'No', rlabs, 'No', clabs, 80, 1, ifail)

    End Program


ご案内
関連情報
Privacy Policy  /  Trademarks