diff --git a/python/paddle/tensor/linalg.py b/python/paddle/tensor/linalg.py index 137c85ac989382fa77daeeb149885b44befb1e89..c704a1b52d14e7d15e1456674d64888be7080ecc 100644 --- a/python/paddle/tensor/linalg.py +++ b/python/paddle/tensor/linalg.py @@ -588,13 +588,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::