Last change
on this file since 114 was
57,
checked in by aslmd, 15 years ago
|
mineur LMD_MM_MARS: ajout du GCM ancienne physique, systeme maintenant complet sur SVN (ne manque que la base de donnees d'etats initiaux)
|
File size:
291 bytes
|
Rev | Line | |
---|
[57] | 1 | subroutine scopyi(n,sx,incx,sy,incy) |
---|
| 2 | c |
---|
| 3 | IMPLICIT NONE |
---|
| 4 | c |
---|
| 5 | integer n,incx,incy,ix,iy,i |
---|
| 6 | integer sx((n-1)*incx+1),sy((n-1)*incy+1) |
---|
| 7 | c |
---|
| 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 |
---|
| 14 | 10 continue |
---|
| 15 | c |
---|
| 16 | return |
---|
| 17 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.