diff options
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index a672fdc53..9ddc3c546 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1180,9 +1180,9 @@ def tensordot(a, b, axes=2): Notes ----- Three common use cases are: - ``axes = 0`` : tensor product $a\otimes b$ - ``axes = 1`` : tensor dot product $a\cdot b$ - ``axes = 2`` : (default) tensor double contraction $a:b$ + * ``axes = 0`` : tensor product :math:`a\otimes b` + * ``axes = 1`` : tensor dot product :math:`a\cdot b` + * ``axes = 2`` : (default) tensor double contraction :math:`a:b` When `axes` is integer_like, the sequence for evaluation will be: first the -Nth axis in `a` and 0th axis in `b`, and the -1th axis in `a` and |