Changeset 1970 for trunk/fsource/pypowder.for
- Timestamp:
- Sep 2, 2015 4:01:41 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/fsource/pypowder.for
r1274 r1970 233 233 END 234 234 235 C python interface to gauleg 236 SUBROUTINE PYGAULEG(X1,X2,N,GL,WT) 237 Cf2py intent(in) X1 238 Cf2py intent(in) X2 239 Cf2py intent(in) N 240 Cf2py intent(out) GL 241 Cf2py depend(N) GL 242 Cf2py intent(out) WT 243 Cf2py depends(N) WT 244 245 INTEGER*4 N 246 REAL*4 X1,X2,GL(0:N-1),WT(0:N-1) 247 CALL GAULEG(X1,X2,GL,WT,N) 248 RETURN 249 END 250 251 235 252 C Fortran (fast) linear interpolation -- B.H. Toby 9/2011 236 253 SUBROUTINE PYFINTERP(NIN,XIN,YIN,NOUT,XOUT,YOUT)
Note: See TracChangeset
for help on using the changeset viewer.