|
|
1.1 ! root 1: c matrix multiplication ! 2: subroutine mmul(a,b,c,l,m,n) ! 3: dimension a(l,m),b(m,n),c(l,n) ! 4: ! 5: do 2 i=1,l ! 6: do 2 j=1,n ! 7: s=0.0 ! 8: do 3 k=1,m ! 9: 3 s=s+a(i,k)*b(k,j) ! 10: 2 c(i,j)=s ! 11: end
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.