source: dynamico_lmdz/simple_physics/phyparam/param/scatter.F @ 4187

Last change on this file since 4187 was 4176, checked in by dubos, 5 years ago

simple_physics : copy code from FH

File size: 369 bytes
Line 
1       subroutine monscatter(n,a,index,b)
2C
3       implicit none
4       integer N,INDEX(n),I
5       real A(n),B(n)
6c
7c
8       DO 100 I=1,N
9          A(INDEX(I))=B(I)
10100    CONTINUE
11c
12       return
13       end
14c
15c
16c      peut etre vec_scatter(v,rindices,count,r) en f77hp
17c      equivalent code:
18c      do 99 i=1,count
19c99    r(rindices(i))=v(i)
20c      voir p. 11-13
21c
Note: See TracBrowser for help on using the repository browser.