diff --git a/python/paddle/tensor/linalg.py b/python/paddle/tensor/linalg.py index 2a77dbd115733f1eae5cf349b85656af265238c1..9a8a4fbc1792cfccf5f35a02015920fb88f24e08 100644 --- a/python/paddle/tensor/linalg.py +++ b/python/paddle/tensor/linalg.py @@ -599,13 +599,13 @@ def dist(x, y, p=2, name=None): ||z||_{0}=\lim_{p \\rightarrow 0}\sum_{i=1}^{m}|z_i|^{p} - When p = inf, the inf-norm of z is the maximum element of z. + When p = inf, the inf-norm of z is the maximum element of the absolute value of z. .. math:: ||z||_\infty=\max_i |z_i| - When p = -inf, the negative-inf-norm of z is the minimum element of z. + When p = -inf, the negative-inf-norm of z is the minimum element of the absolute value of z. .. math::