Skip to content

Commit b9fe130

Browse files
committed
add vecdot to 'See also' of np.dot and np.inner
1 parent 129c6e5 commit b9fe130

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

numpy/_core/multiarray.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ def inner(a, b):
296296
--------
297297
tensordot : Sum products over arbitrary axes.
298298
dot : Generalised matrix product, using second last dimension of `b`.
299+
vecdot : Vector dot product of two arrays.
299300
einsum : Einstein summation convention.
300301
301302
Notes
@@ -809,6 +810,7 @@ def dot(a, b, out=None):
809810
See Also
810811
--------
811812
vdot : Complex-conjugating dot product.
813+
vecdot : Vector dot product of two arrays.
812814
tensordot : Sum products over arbitrary axes.
813815
einsum : Einstein summation convention.
814816
matmul : '@' operator as method with out parameter.

0 commit comments

Comments
 (0)