diff options
author | melissawm <melissawm@gmail.com> | 2021-02-11 18:55:18 -0300 |
---|---|---|
committer | melissawm <melissawm@gmail.com> | 2021-02-11 18:55:18 -0300 |
commit | e770c8c090666fcce309ef38d621dcac29ce78c7 (patch) | |
tree | 76b0292f4b0d7862d80f2b29b0346e51625bac11 /doc/source/reference | |
parent | 5248f4ba50e95bba83e3e07f3271241e25b0421c (diff) | |
download | numpy-e770c8c090666fcce309ef38d621dcac29ce78c7.tar.gz |
Removing mention of the @= operator.
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 4 | ||||
-rw-r--r-- | doc/source/reference/routines.linalg.rst | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index 0d7bf0304..f2204752d 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -567,8 +567,8 @@ Matrix Multiplication: .. note:: Matrix operators ``@`` and ``@=`` were introduced in Python 3.5 - following :pep:`465` and are available since NumPy 1.10.0. Further - information can be found in the :func:`matmul` documentation. + following :pep:`465`, and the ``@`` operator has been introduced in NumPy + 1.10.0. Further information can be found in the :func:`matmul` documentation. Special methods =============== diff --git a/doc/source/reference/routines.linalg.rst b/doc/source/reference/routines.linalg.rst index f9d37af88..76b7ab82c 100644 --- a/doc/source/reference/routines.linalg.rst +++ b/doc/source/reference/routines.linalg.rst @@ -41,7 +41,7 @@ array as its first argument. The ``@`` operator ------------------ -Introduced in NumPy 1.10.0, the ``@`` and ``@=`` operators are preferable to +Introduced in NumPy 1.10.0, the ``@`` operator is preferable to other methods when computing the matrix product between 2d arrays. The :func:`numpy.matmul` function implements the ``@`` operator. |