/[lmdze]/trunk/dyn3d/minmax.f
ViewVC logotype

Annotation of /trunk/dyn3d/minmax.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 254 - (hide annotations)
Mon Feb 5 10:39:38 2018 UTC (6 years, 3 months ago) by guez
File size: 308 byte(s)
Move Sources/* to root directory.
1 guez 3 SUBROUTINE minmax(imax, xi, zmin, zmax)
2    
3     ! From dyn3d/minmax.F, version 1.1.1.1 2004/05/19 12:53:07
4     ! P. Le Van
5    
6     INTEGER, intent(in):: imax
7     REAL, intent(in):: xi(imax)
8     REAL, intent(out):: zmin, zmax
9    
10     !------------------------------
11    
12     zmin = minval(xi)
13     zmax = maxval(xi)
14    
15     END SUBROUTINE minmax

  ViewVC Help
Powered by ViewVC 1.1.21