From 6a4743441e3744e89868641b897a25b981f37507 Mon Sep 17 00:00:00 2001 From: dinglinhe Date: Thu, 12 Aug 2021 11:22:46 +0800 Subject: [PATCH] update Matmul docs for its wrong format --- mindspore/ops/operations/math_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ops/operations/math_ops.py b/mindspore/ops/operations/math_ops.py index bed32eed160..e850496f612 100644 --- a/mindspore/ops/operations/math_ops.py +++ b/mindspore/ops/operations/math_ops.py @@ -1037,7 +1037,7 @@ class MatMul(PrimitiveWithCheck): r""" Multiplies matrix `x` and matrix `y`. - .. math:: + .. math:: (Output)_{i j}=\\sum_{k=1}^{p} a_{i k} b_{k j}=a_{i 1} b_{1 j}+a_{i 2} b_{2 j}+\\cdots+a_{i p} b_{p j}, p\\in N