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/routines.linalg.rst | |
parent | 5248f4ba50e95bba83e3e07f3271241e25b0421c (diff) | |
download | numpy-e770c8c090666fcce309ef38d621dcac29ce78c7.tar.gz |
Removing mention of the @= operator.
Diffstat (limited to 'doc/source/reference/routines.linalg.rst')
-rw-r--r-- | doc/source/reference/routines.linalg.rst | 2 |
1 files changed, 1 insertions, 1 deletions
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. |