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

Annotation of /trunk/dyn3d/minmax.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 134 - (hide annotations)
Wed Apr 29 15:47:56 2015 UTC (9 years, 1 month ago) by guez
Original Path: trunk/Sources/dyn3d/minmax.f
File size: 308 byte(s)
Sources inside, compilation outside.
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