From bdcb221caa1bf2c5d07f4574a6bf22dc7f305827 Mon Sep 17 00:00:00 2001 From: Simon Gibbons Date: Thu, 25 Feb 2016 11:52:16 +0000 Subject: DOC: Fixed math rendering in tensordot docs. Fixes #7339 --- numpy/core/numeric.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'numpy/core/numeric.py') 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 -- cgit v1.2.1