source: trunk/MESOSCALE/LMDZ.MARS/libf_gcm/bibio/ismax.F @ 3567

Last change on this file since 3567 was 57, checked in by aslmd, 14 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: 325 bytes
Line 
1      function ismax(n,sx,incx)
2c
3      IMPLICIT NONE
4c
5      INTEGER n,i,incx,ismax,ix
6      real sx((n-1)*incx+1),sxmax
7c
8      ix=1
9      ismax=1
10      sxmax=sx(1)
11      do 10 i=1,n-1
12      ix=ix+incx
13      if(sx(ix).gt.sxmax) then
14      sxmax=sx(ix)
15      ismax=i+1
16         endif
1710    continue
18c
19      return
20      end
Note: See TracBrowser for help on using the repository browser.