diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-03-13 11:05:10 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-03-13 11:05:10 -0600 |
commit | 5b97375291b6f2502b3fcdecb1753e067de68880 (patch) | |
tree | 4573d09e7237b720d78e13aa2587c206f67a5533 /doc/numpybook/comparison/f2py/add.pyf | |
parent | dfe6c7ed74c087c0deabfd4f7a50224498840838 (diff) | |
download | numpy-5b97375291b6f2502b3fcdecb1753e067de68880.tar.gz |
MAINT: Remove doc/numpybook.
Remove doc/numpybook. It has become outdated in parts and its contents
is now part of the official numpy documentation.
Diffstat (limited to 'doc/numpybook/comparison/f2py/add.pyf')
-rw-r--r-- | doc/numpybook/comparison/f2py/add.pyf | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/doc/numpybook/comparison/f2py/add.pyf b/doc/numpybook/comparison/f2py/add.pyf deleted file mode 100644 index 1a9ac2c9e..000000000 --- a/doc/numpybook/comparison/f2py/add.pyf +++ /dev/null @@ -1,34 +0,0 @@ -! -*- 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/ |