diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2018-04-09 13:43:38 -0700 |
---|---|---|
committer | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2018-04-09 13:43:38 -0700 |
commit | 35753b1f28106d5b3fe48f31130e2dde7a02aa0c (patch) | |
tree | 9068212ed2d7a39436e2664349f903407d38f879 /numpy/core/numeric.py | |
parent | f2f17210a5e5824a9977d63957c09bbe5d64eda2 (diff) | |
download | numpy-35753b1f28106d5b3fe48f31130e2dde7a02aa0c.tar.gz |
'remove indirect relationships'
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index a5ee5f815..77aaf6dec 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -126,10 +126,7 @@ def zeros_like(a, dtype=None, order='K', subok=True): empty_like : Return an empty array with shape and type of input. ones_like : Return an array of ones with shape and type of input. full_like : Return a new array with shape of input filled with value. - empty : Return a new uninitialized array. - ones : Return a new array setting values to one. zeros : Return a new array setting values to zero. - full : Return a new array of given shape filled with value. Examples -------- @@ -179,10 +176,7 @@ def ones(shape, dtype=None, order='C'): See Also -------- - empty_like : Return an empty array with shape and type of input. ones_like : Return an array of ones with shape and type of input. - zeros_like : Return an array of zeros with shape and type of input. - full_like : Return a new array with shape of input filled with value. empty : Return a new uninitialized array. zeros : Return a new array setting values to zero. full : Return a new array of given shape filled with value. @@ -246,10 +240,7 @@ def ones_like(a, dtype=None, order='K', subok=True): empty_like : Return an empty array with shape and type of input. zeros_like : Return an array of zeros with shape and type of input. full_like : Return a new array with shape of input filled with value. - empty : Return a new uninitialized array. ones : Return a new array setting values to one. - zeros : Return a new array setting values to zero. - full : Return a new array of given shape filled with value. Examples -------- @@ -298,9 +289,6 @@ def full(shape, fill_value, dtype=None, order='C'): See Also -------- - empty_like : Return an empty array with shape and type of input. - ones_like : Return an array of ones with shape and type of input. - zeros_like : Return an array of zeros with shape and type of input. full_like : Return a new array with shape of input filled with value. empty : Return a new uninitialized array. ones : Return a new array setting values to one. @@ -356,9 +344,6 @@ def full_like(a, fill_value, dtype=None, order='K', subok=True): empty_like : Return an empty array with shape and type of input. ones_like : Return an array of ones with shape and type of input. zeros_like : Return an array of zeros with shape and type of input. - empty : Return a new uninitialized array. - ones : Return a new array setting values to one. - zeros : Return a new array setting values to zero. full : Return a new array of given shape filled with value. Examples |