diff options
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 5cc178e02..b90b0a9c9 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1243,8 +1243,8 @@ def tensordot(a, b, axes=2): Notes ----- Three common use cases are: - * ``axes = 0`` : tensor product :math:`a\otimes b` - * ``axes = 1`` : tensor dot product :math:`a\cdot 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 |