aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Block.h
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-08-27 14:54:57 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-08-27 14:54:57 +0200
commit69c057ccb17ec77fcfc4b72795bdf2494b1313a8 (patch)
tree902e2396c513a55d536be6b2bea135a3cc58e9e9 /Eigen/src/Core/Block.h
parent94a7a1ec00d2f26fc301a1e81a1d7d3aa07b57e9 (diff)
Fixed InnerPanel definition in the Transformation class.
Added some inital documentation on InnerPanel.
Diffstat (limited to 'Eigen/src/Core/Block.h')
-rw-r--r--Eigen/src/Core/Block.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/Core/Block.h b/Eigen/src/Core/Block.h
index 358b3188b..3efdcfee3 100644
--- a/Eigen/src/Core/Block.h
+++ b/Eigen/src/Core/Block.h
@@ -21,6 +21,9 @@ namespace Eigen {
* \param XprType the type of the expression in which we are taking a block
* \param BlockRows the number of rows of the block we are taking at compile time (optional)
* \param BlockCols the number of columns of the block we are taking at compile time (optional)
+ * \param InnerPanel is true, if the block maps to a set of rows of a row major matrix or
+ * to set of columns of a column major matrix (optional). The parameter allows to determine
+ * at compile time whether aligned access is possible on the block expression.
*
* This class represents an expression of either a fixed-size or dynamic-size block. It is the return
* type of DenseBase::block(Index,Index,Index,Index) and DenseBase::block<int,int>(Index,Index) and