diff options
author | Arushi Sharma <40266350+arushi-08@users.noreply.github.com> | 2021-10-19 23:13:31 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 23:13:31 +0530 |
commit | 5d2ca1e357164a1d09417de16543b5cf60faf1f2 (patch) | |
tree | 2b8a9a7114b3ff2d4dbf5369debea45271b3195f | |
parent | 405c6eec7937721bd2e284dceaf4f49d5e6e39e8 (diff) | |
download | numpy-5d2ca1e357164a1d09417de16543b5cf60faf1f2.tar.gz |
DOC:Reword array has one axis
-rw-r--r-- | doc/source/user/quickstart.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index dd5773878..a9cfeca31 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -45,10 +45,11 @@ NumPy's main object is the homogeneous multidimensional array. It is a table of elements (usually numbers), all of the same type, indexed by a tuple of non-negative integers. In NumPy dimensions are called *axes*. -For example, the coordinates of a point in 3D space ``[1, 2, 1]`` has -one axis. That axis has 3 elements in it, so we say it has a length -of 3. In the example pictured below, the array has 2 axes. The first -axis has a length of 2, the second axis has a length of 3. +For example, the array for the coordinates of a point in 3D space, +``[1, 2, 1]``, has one axis. That axis has 3 elements in it, so we say +it has a length of 3. In the example pictured below, the array has 2 +axes. The first axis has a length of 2, the second axis has a length of +3. :: |