Revision ade4b694b3f416d6b195ddcd584d6f89ef36ea2f authored by M. Helena Gon\xe7alves on 28 January 2012, 00:00:00 UTC, committed by Gabor Csardi on 28 January 2012, 00:00:00 UTC
1 parent 8cb2c8d
matc.f
subroutine matc(a,b,n1,n2)
C b=a
implicit double precision (a-h,o-z)
dimension a(n1,n2),b(n1,n2)
do 10 i=1,n1
do 20 j=1,n2
b(i,j)=a(i,j)
20 continue
10 continue
return
end

Computing file changes ...