!27846 numpy-native fix docstrings

Merge pull request !27846 from huangmengxi/code_docs_numpy
This commit is contained in:
i-robot 2021-12-20 06:17:53 +00:00 committed by Gitee
commit 4e99f76211
1 changed files with 1 additions and 1 deletions

View File

@ -4132,7 +4132,7 @@ def multi_dot(arrays):
Computes the dot product of two or more arrays in a single function call, while automatically
selecting the fastest evaluation order.
multi_dot chains numpy.dot and uses optimal parenthesization of the matrices. For more
information, refer to the `wiki page <en.wikipedia.org/wiki/Matrix_chain_multiplication>`_.
information, refer to the `wiki page <https://en.wikipedia.org/wiki/Matrix_chain_multiplication>`_.
Depending on the shapes of the matrices, this can speed up the multiplication a lot.
If the first argument is 1-D it is treated as a row vector. If the last argument is 1-D it
is treated as a column vector. The other arguments must be 2-D.