diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 14:42:08 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 14:42:08 +0200 |
commit | 2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 (patch) | |
tree | 1a4a81faf9e59d0cabf9cbace9dc967bad60caa1 /numpy/doc/creation.py | |
parent | 773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (diff) | |
download | numpy-2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681.tar.gz |
DOC: change Numpy to NumPy in dosctrings and comments
The strings in error messages were left untouched
Diffstat (limited to 'numpy/doc/creation.py')
-rw-r--r-- | numpy/doc/creation.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/doc/creation.py b/numpy/doc/creation.py index b10d45d48..8480858d4 100644 --- a/numpy/doc/creation.py +++ b/numpy/doc/creation.py @@ -19,7 +19,7 @@ This section will not cover means of replicating, joining, or otherwise expanding or mutating existing arrays. Nor will it cover creating object arrays or structured arrays. Both of those are covered in their own sections. -Converting Python array_like Objects to Numpy Arrays +Converting Python array_like Objects to NumPy Arrays ==================================================== In general, numerical data arranged in an array-like structure in Python can @@ -38,10 +38,10 @@ Examples: :: and types >>> x = np.array([[ 1.+0.j, 2.+0.j], [ 0.+0.j, 0.+0.j], [ 1.+1.j, 3.+0.j]]) -Intrinsic Numpy Array Creation +Intrinsic NumPy Array Creation ============================== -Numpy has built-in functions for creating arrays from scratch: +NumPy has built-in functions for creating arrays from scratch: zeros(shape) will create an array filled with 0 values with the specified shape. The default dtype is float64. |