Changeset 247 for trunk/fsource/histogram2d.for
- Timestamp:
- Feb 15, 2011 10:57:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/fsource/histogram2d.for
r232 r247 2 2 1 NST,HST,HSTX,HSTY) 3 3 4 Cf2py intent(in) N5 Cf2py intent(in) X6 Cf2py depend( N) X7 Cf2py intent(in) Y8 Cf2py depend( N) Y9 Cf2py intent(in) Z10 Cf2py depend( N) Z11 Cf2py intent(in) NXBINS12 Cf2py intent(in) NYBINS13 Cf2py intent(in) XLIM14 Cf2py intent(in) YLIM15 Cf2py intent(in ,out) NST16 Cf2py depend( NXBINS,NYBINS)17 Cf2py intent(in ,out) HST18 Cf2py depend( NXBINS,NYBINS)19 Cf2py intent(in ,out) HSTX20 Cf2py depend( NXBINS)21 Cf2py intent(in ,out) HSTY22 Cf2py depend( NYBINS)4 Cf2py intent(in) n 5 Cf2py intent(in) x 6 Cf2py depend(n) x 7 Cf2py intent(in) y 8 Cf2py depend(n) y 9 Cf2py intent(in) z 10 Cf2py depend(n) z 11 Cf2py intent(in) nxbins 12 Cf2py intent(in) nybins 13 Cf2py intent(in) xlim 14 Cf2py intent(in) ylim 15 Cf2py intent(inout) nst 16 Cf2py depend(nxbins,nybins) nst 17 Cf2py intent(inout) hst 18 Cf2py depend(nxbins,nybins) hst 19 Cf2py intent(inout) hstx 20 Cf2py depend(nxbins) hstx 21 Cf2py intent(inout) hsty 22 Cf2py depend(nybins) hsty 23 23 24 24 IMPLICIT NONE … … 43 43 HSTY(J) = YLIM(0)+FLOAT(J)*DY 44 44 END DO 45 45 46 46 DO K=0,N 47 47 IF ( ( X(K) .GE. XLIM(0) .AND. X(K) .LE. XLIM(1)) .AND.
Note: See TracChangeset
for help on using the changeset viewer.