From d9585478d90bd98ba831104b9186e4c06777a4a2 Mon Sep 17 00:00:00 2001 From: Jakob Struye Date: Wed, 18 Aug 2021 15:04:53 +0200 Subject: [PATCH] Clearer doc for squaredNorm (cherry picked from commit 53a29c7e351646efe31ee85666c8f268f8e0d462) --- Eigen/src/Core/Dot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/Dot.h b/Eigen/src/Core/Dot.h index 1fe7a84a4..24d7bb80d 100644 --- a/Eigen/src/Core/Dot.h +++ b/Eigen/src/Core/Dot.h @@ -86,7 +86,7 @@ MatrixBase::dot(const MatrixBase& other) const //---------- implementation of L2 norm and related functions ---------- -/** \returns, for vectors, the squared \em l2 norm of \c *this, and for matrices the Frobenius norm. +/** \returns, for vectors, the squared \em l2 norm of \c *this, and for matrices the squared Frobenius norm. * In both cases, it consists in the sum of the square of all the matrix entries. * For vectors, this is also equals to the dot product of \c *this with itself. *