diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-10-28 21:25:47 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-10-28 21:25:47 +0000 |
commit | 5dda00de77bbb5ec80deb350a95b5d7780c571b8 (patch) | |
tree | 1a017a7ce73b2aff22f2e92ba80a07f41d20542d /scipy/f2py/docs/pyforttest.pyf | |
parent | b87a003a9205916b22abd5fa64580974a2df652a (diff) | |
download | numpy-5dda00de77bbb5ec80deb350a95b5d7780c571b8.tar.gz |
Moved f2py2e to f2py.
Diffstat (limited to 'scipy/f2py/docs/pyforttest.pyf')
-rw-r--r-- | scipy/f2py/docs/pyforttest.pyf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scipy/f2py/docs/pyforttest.pyf b/scipy/f2py/docs/pyforttest.pyf new file mode 100644 index 000000000..79a9ae205 --- /dev/null +++ b/scipy/f2py/docs/pyforttest.pyf @@ -0,0 +1,5 @@ +subroutine foo(a,m,n) +integer m = size(a,1) +integer n = size(a,2) +real, intent(inout) :: a(m,n) +end subroutine foo |