diff options
Diffstat (limited to 'doc/source/f2py/code/add-edited.pyf')
-rw-r--r-- | doc/source/f2py/code/add-edited.pyf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/source/f2py/code/add-edited.pyf b/doc/source/f2py/code/add-edited.pyf new file mode 100644 index 000000000..4d2047274 --- /dev/null +++ b/doc/source/f2py/code/add-edited.pyf @@ -0,0 +1,6 @@ +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
\ No newline at end of file |