From c0fe6ce2238831a455a8464e8e26a5326aeae758 Mon Sep 17 00:00:00 2001 From: Anabasis Date: Mon, 13 May 2024 02:51:40 +0000 Subject: [PATCH] Fixed a clerical error at documentation of class Matrix. --- Eigen/src/Core/Matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h index af6afafc0..0d8691e7a 100644 --- a/Eigen/src/Core/Matrix.h +++ b/Eigen/src/Core/Matrix.h @@ -125,7 +125,7 @@ struct traits> { * coefficients. * *
\anchor fixedsize Fixed-size versus dynamic-size:
- *
Fixed-size means that the numbers of rows and columns are known are compile-time. In this case, Eigen allocates + *
Fixed-size means that the numbers of rows and columns are known at compile-time. In this case, Eigen allocates * the array of coefficients as a fixed-size array, as a class member. This makes sense for very small matrices, * typically up to 4x4, sometimes up to 16x16. Larger matrices should be declared as dynamic-size even if one happens to * know their size at compile-time. @@ -139,7 +139,7 @@ struct traits> { *
\anchor maxrows MaxRows_ and MaxCols_:
*
In most cases, one just leaves these parameters to the default values. * These parameters mean the maximum size of rows and columns that the matrix may have. They are useful in cases - * when the exact numbers of rows and columns are not known are compile-time, but it is known at compile-time that they + * when the exact numbers of rows and columns are not known at compile-time, but it is known at compile-time that they * cannot exceed a certain value. This happens when taking dynamic-size blocks inside fixed-size matrices: in this case * MaxRows_ and MaxCols_ are the dimensions of the original matrix, while Rows_ and Cols_ are Dynamic.
*