diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2008-08-23 23:55:01 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2008-08-23 23:55:01 +0000 |
commit | 46facee53a506cd26c00ad12d482a682b0176404 (patch) | |
tree | 563e932b1888e28c19a0ca6cc0f6e02bfe0b6f3f /doc/numpybook/comparison/f2py/add.pyf | |
parent | d14243ca1fa3373babfd5b699e12dff177f60dba (diff) | |
download | numpy-46facee53a506cd26c00ad12d482a682b0176404.tar.gz |
Move book to docs directory.
Diffstat (limited to 'doc/numpybook/comparison/f2py/add.pyf')
-rw-r--r-- | doc/numpybook/comparison/f2py/add.pyf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/numpybook/comparison/f2py/add.pyf b/doc/numpybook/comparison/f2py/add.pyf new file mode 100644 index 000000000..1a9ac2c9e --- /dev/null +++ b/doc/numpybook/comparison/f2py/add.pyf @@ -0,0 +1,34 @@ +! -*- f90 -*- +! Note: the context of this file is case sensitive. + +python module add ! in + interface ! in :add + subroutine zadd(a,b,c,n) ! in :add:add.f + double complex dimension(n) :: a + double complex dimension(n) :: b + double complex intent(out), dimension(n) :: c + integer intent(hide), depend(a) :: n = len(a) + end subroutine zadd + subroutine cadd(a,b,c,n) ! in :add:add.f + complex dimension(*) :: a + complex dimension(*) :: b + complex dimension(*) :: c + integer :: n + end subroutine cadd + subroutine dadd(a,b,c,n) ! in :add:add.f + double precision dimension(*) :: a + double precision dimension(*) :: b + double precision dimension(*) :: c + integer :: n + end subroutine dadd + subroutine sadd(a,b,c,n) ! in :add:add.f + real dimension(*) :: a + real dimension(*) :: b + real dimension(*) :: c + integer :: n + end subroutine sadd + end interface +end python module add + +! This file was auto-generated with f2py (version:2_2694). +! See http://cens.ioc.ee/projects/f2py2e/ |