diff options
author | melissawm <melissawm@gmail.com> | 2021-02-05 14:05:34 -0300 |
---|---|---|
committer | melissawm <melissawm@gmail.com> | 2021-02-05 14:17:42 -0300 |
commit | 46b5b0d428bbe3216140e799ca4aaa2507b8293e (patch) | |
tree | 8f0cb39882a0f3d4ed2ad887bd2c627dd432bb54 /doc/source/reference/arrays.ndarray.rst | |
parent | 0a1bd4ead41b1fdfb53142097b5e08555f280545 (diff) | |
download | numpy-46b5b0d428bbe3216140e799ca4aaa2507b8293e.tar.gz |
DOC: Discussion on the @ operator and the matrix class
Diffstat (limited to 'doc/source/reference/arrays.ndarray.rst')
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index 191367058..106ccd7cb 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -567,10 +567,10 @@ Matrix Multiplication: .. note:: Matrix operators ``@`` and ``@=`` were introduced in Python 3.5 - following PEP465. NumPy 1.10.0 has a preliminary implementation of ``@`` - for testing purposes. Further documentation can be found in the - :func:`matmul` documentation. + following PEP465_ and are available since NumPy 1.10.0. Further + information can be found in the :func:`matmul` documentation. +.. _PEP465: https://www.python.org/dev/peps/pep-0465/ Special methods =============== |