diff --git a/docs.html b/docs.html
index 0ed3c656..668773bc 100644
--- a/docs.html
+++ b/docs.html
@@ -10606,9 +10606,9 @@ For vector norm with p = 2 and matrix norm with p&thinsp
Caveats:
-- matrix 2-norm (spectral norm) is based on SVD, which is computationally intensive; a faster alternative is norm2est()
- to obtain the vector norm of each row or column of a matrix, use vecnorm()
- to obtain the zero/Hamming pseudo-norm (number of non-zero elements), use this expression:
accu(X != 0)
+- matrix 2-norm (spectral norm) is based on SVD, which is computationally intensive; a faster alternative is norm2est()
@@ -12165,7 +12165,11 @@ mat Y = unique(X);
vecnorm( X, p, dim )
-
-Compute the p-norm of each column vector (dim = 0) or row vector (dim = 1) of matrix X
+If X is a matrix, compute the p-norm of each column vector (dim = 0) or row vector (dim = 1)
+
+
+-
+If X is a vector and dim is not specified, the result is the same as norm()
-