summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:42:08 +0200
committerPierre de Buyl <pdebuyl@pdebuyl.be>2016-09-06 14:42:08 +0200
commit2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 (patch)
tree1a4a81faf9e59d0cabf9cbace9dc967bad60caa1 /numpy/core/numeric.py
parent773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (diff)
downloadnumpy-2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681.tar.gz
DOC: change Numpy to NumPy in dosctrings and comments
The strings in error messages were left untouched
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 81ed0178a..51f8dd034 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -759,7 +759,7 @@ def isfortran(a):
This function is obsolete and, because of changes due to relaxed stride
checking, its return value for the same array may differ for versions
- of Numpy >= 1.10 and previous versions. If you only want to check if an
+ of NumPy >= 1.10 and previous versions. If you only want to check if an
array is Fortran contiguous use ``a.flags.f_contiguous`` instead.
Parameters
@@ -1158,11 +1158,11 @@ def alterdot():
"""
Change `dot`, `vdot`, and `inner` to use accelerated BLAS functions.
- Typically, as a user of Numpy, you do not explicitly call this
- function. If Numpy is built with an accelerated BLAS, this function is
- automatically called when Numpy is imported.
+ Typically, as a user of NumPy, you do not explicitly call this
+ function. If NumPy is built with an accelerated BLAS, this function is
+ automatically called when NumPy is imported.
- When Numpy is built with an accelerated BLAS like ATLAS, these
+ When NumPy is built with an accelerated BLAS like ATLAS, these
functions are replaced to make use of the faster implementations. The
faster implementations only affect float32, float64, complex64, and
complex128 arrays. Furthermore, the BLAS API only includes
@@ -1170,10 +1170,10 @@ def alterdot():
arrays with larger dimensionalities use the built in functions and are
not accelerated.
- .. note:: Deprecated in Numpy 1.10
+ .. note:: Deprecated in NumPy 1.10
The cblas functions have been integrated into the multarray
module and alterdot now longer does anything. It will be
- removed in Numpy 1.11.0.
+ removed in NumPy 1.11.0.
See Also
--------
@@ -1195,10 +1195,10 @@ def restoredot():
an accelerated BLAS, or when being very careful about benchmarking
linear algebra operations.
- .. note:: Deprecated in Numpy 1.10
+ .. note:: Deprecated in NumPy 1.10
The cblas functions have been integrated into the multarray
module and restoredot now longer does anything. It will be
- removed in Numpy 1.11.0.
+ removed in NumPy 1.11.0.
See Also
--------
@@ -1505,8 +1505,8 @@ def rollaxis(a, axis, start=0):
Returns
-------
res : ndarray
- For Numpy >= 1.10 a view of `a` is always returned. For earlier
- Numpy versions a view of `a` is returned only if the order of the
+ For NumPy >= 1.10 a view of `a` is always returned. For earlier
+ NumPy versions a view of `a` is returned only if the order of the
axes is changed, otherwise the input array is returned.
See Also