source: codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/dyn3d_common/minmax2.F @ 227

Last change on this file since 227 was 222, checked in by ymipsl, 10 years ago

Creating temporary dynamico/lmdz/saturn branche

YM

File size: 364 bytes
Line 
1!
2! $Header$
3!
4       SUBROUTINE minmax2(imax, jmax, lmax, xi, zmin, zmax )
5c
6       INTEGER lmax,jmax,imax
7       REAL xi(imax*jmax*lmax) 
8       REAL zmin,zmax
9       INTEGER i
10   
11       zmin = xi(1)
12       zmax = xi(1)
13
14       DO i = 2, imax*jmax*lmax
15         zmin = MIN( zmin,xi(i) )
16         zmax = MAX( zmax,xi(i) )
17       ENDDO
18
19       RETURN
20       END
Note: See TracBrowser for help on using the repository browser.