概要
本サンプルはFortran言語によりLAPACKルーチンDSPOSVを利用するサンプルプログラムです。
入力データ
(本ルーチンの詳細はDSPOSV のマニュアルページを参照)1 2 3 4 5 6 7
このデータをダウンロード |
DSPOSV Example Program Data 4 1 :Value of N, R 4.16 -3.12 0.56 -0.10 5.03 -0.83 1.18 0.76 0.34 1.18 :End of matrix A 8.70 -13.35 1.89 -4.14 :End of vector b
出力結果
(本ルーチンの詳細はDSPOSV のマニュアルページを参照)ソースコード
(本ルーチンの詳細はDSPOSV のマニュアルページを参照)※本サンプルソースコードのご利用手順は「サンプルのコンパイル及び実行方法」をご参照下さい。
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
このソースコードをダウンロード |
Program dsposv_example ! DSPOSV Example Program Text ! Copyright 2017, Numerical Algorithms Group Ltd. http://www.nag.com ! .. Use Statements .. Use lapack_interfaces, Only: dsposv Use lapack_precision, Only: sp, dp ! .. Implicit None Statement .. Implicit None ! .. Parameters .. Integer, Parameter :: nin = 5, nout = 6 ! .. Local Scalars .. Integer :: i, info, iter, lda, ldb, ldx, n, r ! .. Local Arrays .. Real (Kind=dp), Allocatable :: a(:, :), b(:, :), work(:, :), x(:, :) Real (Kind=sp), Allocatable :: swork(:) ! .. Executable Statements .. Write (nout, *) 'DSPOSV Example Program Results' Write (nout, *) ! Skip heading in data file Read (nin, *) Read (nin, *) n, r lda = n ldb = n ldx = n Allocate (a(lda,n), b(n,r), work(n,r), x(ldx,r), swork(n*(n+r))) ! Read the upper triangular part of A from data file Read (nin, *)(a(i,i:n), i=1, n) ! Read B from data file Read (nin, *)(b(i,1:r), i=1, n) ! Solve the equations Ax = b for x Call dsposv('U', n, r, a, lda, b, ldb, x, ldx, work, swork, iter, info) If (info==0) Then ! Print solution Write (nout, *) 'Solution' Write (nout, 100)(x(i,1:r), i=1, n) Else Write (nout, 110) 'The leading minor of order ', info, & ' is not positive definite' End If 100 Format ((3X,7F11.4)) 110 Format ((1X,A,I3,A)) End Program