source: trunk/LMDZ.PLUTO.old/libf/bibio/scopyi.F @ 3561

Last change on this file since 3561 was 3175, checked in by emillour, 12 months ago

Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM

File size: 294 bytes
Line 
1      subroutine scopyi(n,sx,incx,sy,incy)
2c
3      IMPLICIT NONE
4c
5      integer n,incx,incy,ix,iy,i
6      integer sx((n-1)*incx+1),sy((n-1)*incy+1)
7c
8      iy=1
9      ix=1
10      do 10 i=1,n
11         sy(iy)=sx(ix)
12         ix=ix+incx
13         iy=iy+incy
1410    continue
15c
16      return
17      end
Note: See TracBrowser for help on using the repository browser.