Fortran 板


LINE

我是用彭国伦FORTRAN95书里面的"inverse.f90"作修该 module LinearAlgebra implicit none contains ! 求反矩阵 subroutine inverse(A,IA) implicit none real :: A(:,:), IA(:,:) real, allocatable :: B(:,:) integer :: i,j,N N = size(A,1) allocate(B(N,N)) ! 先把IA设定成单位矩阵 forall(i=1:N,j=1:N,i==j) IA(i,j)=1.0 forall(i=1:N,j=1:N,i/=j) IA(i,j)=0.0 ! 保存原先的矩阵A, 使用B来计算 B=A ! 把B化成对角线矩阵(除了对角线外,都为0) call Upper(B,IA,N) ! 先把B化成上三角矩阵 call Lower(B,IA,N) ! 再把B化成下三角矩阵 ! 求解 forall(i=1:N) IA(i,:)=IA(i,:)/B(i,i) return end subroutine ! 输出矩阵的副程式 subroutine output(matrix) implicit none real :: matrix(:,:) integer :: m,n,i character(len=20) :: for='(??(1x,f6.3))' m = size(matrix,1) n = size(matrix,2) ! 用字串来设定输出格式 write( FOR(2:3), '(I2)' ) N do i=1,N write( *, FMT=FOR ) matrix(i,:) end do return end subroutine output ! 求上三角矩阵的副程式 subroutine Upper(M,S,N) implicit none integer :: N real :: M(N,N) real :: S(N,N) integer :: I,J real :: E do I=1,N-1 do J=I+1,N E=M(J,I)/M(I,I) M(J,I:N)=M(J,I:N)-M(I,I:N)*E S(J,:)=S(J,:)-S(I,:)*E end do end do return end subroutine Upper ! 求下三角矩阵的副程式 subroutine Lower(M,S,N) implicit none integer :: N real :: M(N,N) real :: S(N,N) integer :: I,J real :: E do I=N,2,-1 do J=I-1,1,-1 E=M(J,I)/M(I,I) M(J,1:N)=M(J,1:N)-M(I,1:N)*E S(J,:)=S(J,:)-S(I,:)*E end do end do return end subroutine Lower end module ! 求解联立式 program main use LinearAlgebra implicit none integer, parameter :: N=3 ! Size of Matrix real :: A(N,N) = (/1,2,3,4,5,6,7,8,8 /) real :: IA(N,N) integer :: i write(*,*) "原矩阵" call output(A) call inverse(A,IA) write(*,*) "反矩阵" call output(IA) stop end program 我要得到n维反矩阵 小弟程式跑出来的结果反矩阵一直都是零 不知道哪里出了问题 有大大可以帮忙看一下吗谢谢 以下程式暂时用3x3作测试 而g.dat 使用以下数值 1 2 3 4 5 6 7 8 8 算出结果应该如下 ans = -2.6667 2.6667 -1.0000 3.3333 -4.3333 2.0000 -1.0000 2.0000 -1.0000 修改後程式码 program inv implicit none integer, parameter :: N=3 ! Size of Matrix real :: A(N,N) real :: IA(N,N) integer :: i,yy,zz open(unit=101,file='g.dat',status='old') !write(101,*) "Matrix:" DO yy = 1, 3 read(101,*) (A(yy,zz), zz = 1, 3) END DO open(30, file="result.dat",status="unknown") write(30,*) "原矩阵" DO yy = 1, 36 do zz= 1, 36 write(30,*) yy,zz,A(yy,zz) END DO END DO call output(A) call output(IA) call inverse(A,IA) write(30,*) "反矩阵" DO yy = 1, 36 do zz= 1, 36 write(30,*) yy,zz,IA(yy,zz) END DO END DO stop end program ! 输出矩阵的副程式 subroutine output(matrix) real :: matrix(:,:) integer :: m,n,i character(len=20) :: for='(??(1x,f6.3))' m = size(matrix,1) n = size(matrix,2) ! 用字串来设定输出格式 write( FOR(2:3), '(I2)' ) N do i=1,N write( *, FMT=FOR ) matrix(i,:) end do return end subroutine output ! 求反矩阵 subroutine inverse(A,IA) real :: A(:,:), IA(:,:) real, allocatable :: B(:,:) integer :: i,j,N N = size(A,1) allocate(B(N,N)) ! 先把IA设定成单位矩阵 forall(i=1:N,j=1:N,i==j) IA(i,j)=1.0 forall(i=1:N,j=1:N,i/=j) IA(i,j)=0.0 ! 保存原先的矩阵A, 使用B来计算 B=A ! 把B化成对角线矩阵(除了对角线外,都为0) call Upper(B,IA,N) ! 先把B化成上三角矩阵 call Lower(B,IA,N) ! 再把B化成下三角矩阵 ! 求解 forall(i=1:N) IA(i,:)=IA(i,:)/B(i,i) return end subroutine ! 求上三角矩阵的副程式 subroutine Upper(M,S,N) integer :: N real :: M(N,N) real :: S(N,N) integer :: I,J real :: E do I=1,N-1 do J=I+1,N E=M(J,I)/M(I,I) M(J,I:N)=M(J,I:N)-M(I,I:N)*E S(J,:)=S(J,:)-S(I,:)*E end do end do return end subroutine Upper ! 求下三角矩阵的副程式 subroutine Lower(M,S,N) integer :: N real :: M(N,N) real :: S(N,N) integer :: I,J real :: E do I=N,2,-1 do J=I-1,1,-1 E=M(J,I)/M(I,I) M(J,1:N)=M(J,1:N)-M(I,1:N)*E S(J,:)=S(J,:)-S(I,:)*E end do end do return end subroutine Lower --



※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.115.66.121 ※ 编辑: shockbon 来自: 140.115.66.121 (05/13 22:27)
1F:推 GP03:直接用IMSL的函式试试看? 05/13 22:31







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:iOS站内搜寻

TOP