From 8e302a030b2fbd32f0fe2637fbb13f5f4d0bedda Mon Sep 17 00:00:00 2001 From: liuhe Date: Wed, 14 Apr 2021 14:29:13 +0800 Subject: [PATCH] update example of MatrixInverse --- mindspore/ops/operations/math_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mindspore/ops/operations/math_ops.py b/mindspore/ops/operations/math_ops.py index 98e3efff3c..6fe8f230ac 100644 --- a/mindspore/ops/operations/math_ops.py +++ b/mindspore/ops/operations/math_ops.py @@ -4507,8 +4507,8 @@ class MatrixInverse(PrimitiveWithInfer): >>> matrix_inverse = ops.MatrixInverse(adjoint=False) >>> output = matrix_inverse(x) >>> print(output) - [[[ 2.408438 -1.535711 ] - [-2.4190936 0.97356814]] + [[[ 2.4095483 -1.536419 ] + [-2.4197974 0.97401696]] [[-0.79111797 1.0569006 ] [ 0.74180895 -0.2904787 ]]] """