Revision a300fe2b8c94aa973f39d050e5d9ddf04f609e1a authored by M. Helena Gon\xe7alves on 17 February 2013, 00:00:00 UTC, committed by Gabor Csardi on 17 February 2013, 00:00:00 UTC
1 parent e9f9bbd
Raw File
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
back to top