diff options
author | Pauli Virtanen <pav@iki.fi> | 2014-01-02 23:19:54 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2014-01-02 23:19:54 +0200 |
commit | 6325f92017337b0b0e340689959eba465c8dbd94 (patch) | |
tree | 3c1fbb666c5d0634eae8e6be99b93385b4596565 /doc/source/f2py/string_session.dat | |
parent | 337366c6d512b47e6a702d18a3f3f6240c3fda4a (diff) | |
download | numpy-6325f92017337b0b0e340689959eba465c8dbd94.tar.gz |
DOC: f2py: Numeric -> numpy
Diffstat (limited to 'doc/source/f2py/string_session.dat')
-rw-r--r-- | doc/source/f2py/string_session.dat | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/source/f2py/string_session.dat b/doc/source/f2py/string_session.dat index 64ebcb3f4..cbae6b784 100644 --- a/doc/source/f2py/string_session.dat +++ b/doc/source/f2py/string_session.dat @@ -8,11 +8,11 @@ Required arguments: c : input string(len=-1) d : in/output rank-0 array(string(len=-1),'c') ->>> import Numeric ->>> a=Numeric.array('123') ->>> b=Numeric.array('123') ->>> c=Numeric.array('123') ->>> d=Numeric.array('123') +>>> import numpy +>>> a=numpy.array('123') +>>> b=numpy.array('123') +>>> c=numpy.array('123') +>>> d=numpy.array('123') >>> mystring.foo(a,b,c,d) A=123 B=123 @@ -24,4 +24,4 @@ Required arguments: C=C23 D=D23 >>> a.tostring(),b.tostring(),c.tostring(),d.tostring() -('123', 'B23', '123', 'D23')
\ No newline at end of file +('123', 'B23', '123', 'D23') |