概要
本サンプルはFortran言語によりLAPACKルーチンDGTSVXを利用するサンプルプログラムです。
以下の式を解きます。


後方エラーと前方エラーの推定値と条件数も合わせて出力されます。
入力データ
(本ルーチンの詳細はDGTSVX のマニュアルページを参照)1 2 3 4 5 6 7 8 9 10
このデータをダウンロード |
DGTSVX Example Program Data 5 2 :Values of N and NRHS 2.1 -1.0 1.9 8.0 3.0 2.3 -5.0 -0.9 7.1 3.4 3.6 7.0 -6.0 :End of matrix A 2.7 6.6 -0.5 10.8 2.6 -3.2 0.6 -11.2 2.7 19.1 :End of matrix B
出力結果
(本ルーチンの詳細はDGTSVX のマニュアルページを参照)1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
この出力例をダウンロード |
DGTSVX Example Program Results Solution(s) 1 2 1 -4.0000 5.0000 2 7.0000 -4.0000 3 3.0000 -3.0000 4 -4.0000 -2.0000 5 -3.0000 1.0000 Backward errors (machine-dependent) 7.2E-17 5.9E-17 Estimated forward error bounds (machine-dependent) 9.4E-15 1.4E-14 Estimate of reciprocal condition number 1.1E-02
ソースコード
(本ルーチンの詳細はDGTSVX のマニュアルページを参照)※本サンプルソースコードのご利用手順は「サンプルのコンパイル及び実行方法」をご参照下さい。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
このソースコードをダウンロード |
Program dgtsvx_example ! DGTSVX 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: dgtsvx Use lapack_precision, Only: dp ! .. Implicit None Statement .. Implicit None ! .. Parameters .. Integer, Parameter :: nin = 5, nout = 6 ! .. Local Scalars .. Real (Kind=dp) :: rcond Integer :: i, ifail, info, ldb, ldx, n, nrhs ! .. Local Arrays .. Real (Kind=dp), Allocatable :: b(:, :), berr(:), d(:), df(:), dl(:), & dlf(:), du(:), du2(:), duf(:), ferr(:), work(:), x(:, :) Integer, Allocatable :: ipiv(:), iwork(:) ! .. Executable Statements .. Write (nout, *) 'DGTSVX Example Program Results' Write (nout, *) Flush (nout) ! Skip heading in data file Read (nin, *) Read (nin, *) n, nrhs ldb = n ldx = n Allocate (b(ldb,nrhs), berr(nrhs), d(n), df(n), dl(n-1), dlf(n-1), & du(n-1), du2(n-2), duf(n-1), ferr(nrhs), work(3*n), x(ldx,nrhs), & ipiv(n), iwork(n)) ! Read the tridiagonal matrix A from data file Read (nin, *) du(1:n-1) Read (nin, *) d(1:n) Read (nin, *) dl(1:n-1) ! Read the right hand matrix B Read (nin, *)(b(i,1:nrhs), i=1, n) ! Solve the equations AX = B Call dgtsvx('No factors', 'No transpose', n, nrhs, dl, d, du, dlf, df, & duf, du2, ipiv, b, ldb, x, ldx, rcond, ferr, berr, work, iwork, info) If ((info==0) .Or. (info==n+1)) Then ! Print solution, error bounds and condition number ! 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, nrhs, x, ldx, & 'Solution(s)', ifail) Write (nout, *) Write (nout, *) 'Backward errors (machine-dependent)' Write (nout, 100) berr(1:nrhs) Write (nout, *) Write (nout, *) 'Estimated forward error bounds (machine-dependent)' Write (nout, 100) ferr(1:nrhs) Write (nout, *) Write (nout, *) 'Estimate of reciprocal condition number' Write (nout, 100) rcond If (info==n+1) Then Write (nout, *) Write (nout, *) 'The matrix A is singular to working precision' End If Else Write (nout, 110) 'The (', info, ',', info, ')', & ' element of the factor U is zero' End If 100 Format ((3X,1P,7E11.1)) 110 Format (1X, A, I3, A, I3, A, A) End Program