namespace Eigen { /** \page TutorialBlockOperations Tutorial page 4 - %Block operations \ingroup Tutorial \li \b Previous: \ref TutorialArrayClass \li \b Next: \ref TutorialAdvancedInitialization This tutorial page explains the essentials of block operations. A block is a rectangular part of a matrix or array. Blocks expressions can be used both as rvalues and as lvalues. As usual with Eigen expressions, this abstraction has zero runtime cost provided that you let your compiler optimize. \b Table \b of \b contents - \ref TutorialBlockOperationsUsing - \ref TutorialBlockOperationsSyntaxColumnRows - \ref TutorialBlockOperationsSyntaxCorners - \ref TutorialBlockOperationsSyntaxVectors \section TutorialBlockOperationsUsing Using block operations The most general block operation in Eigen is called \link DenseBase::block() .block() \endlink. This function returns a block of size (p,q) whose origin is at (i,j). There are two versions, whose syntax is as follows:
\b %Block \b operation Default version Optimized version when the
size is known at compile time
%Block of size (p,q), starting at (i,j) \code matrix.block(i,j,p,q);\endcode \code matrix.block(i,j);\endcode
The default version is a method which takes four arguments. It can always be used. The optimized version takes two template arguments (the size of the block) and two normal arguments (the position of the block). It can only be used if the size of the block is known at compile time, but it may be faster than the non-optimized version, especially if the size of the block is small. Both versions can be used on fixed-size and dynamic-size matrices and arrays. The following program uses the default and optimized versions to print the values of several blocks inside a matrix.
\include Tutorial_BlockOperations_print_block.cpp Output: \verbinclude Tutorial_BlockOperations_print_block.out
In the above example the \link DenseBase::block() .block() \endlink function was employed to read the values inside matrix \p m . However, blocks can also be used as lvalues, meaning that you can assign to a block. This is illustrated in the following example, which uses arrays instead of matrices. The coefficients of the 5-by-5 array \c n are first all set to 0.6, but then the 3-by-3 block in the middle is set to the values in \c m . The penultimate line shows that blocks can be combined with matrices and arrays to create more complex expressions. Blocks of an array are an array expression, and thus the multiplication here is coefficient-wise multiplication.
\include Tutorial_BlockOperations_block_assignment.cpp Output: \verbinclude Tutorial_BlockOperations_block_assignment.out
The \link DenseBase::block() .block() \endlink method is used for general block operations, but there are other methods for special cases. These are described in the rest of this page. \section TutorialBlockOperationsSyntaxColumnRows Columns and rows Individual columns and rows are special cases of blocks. Eigen provides methods to easily access them: \link DenseBase::col() .col() \endlink and \link DenseBase::row() .row()\endlink. There is no syntax variant for an optimized version.
\b %Block \b operation Default version Optimized version when the
size is known at compile time
ith row \link DenseBase::row() * \endlink \code matrix.row(i);\endcode \code matrix.row(i);\endcode
jth column \link DenseBase::col() * \endlink \code matrix.col(j);\endcode \code matrix.col(j);\endcode
The argument for \p col() and \p row() is the index of the column or row to be accessed, starting at 0. Therefore, \p col(0) will access the first column and \p col(1) the second one.
C++ code: \include Tutorial_BlockOperations_colrow.cpp Output: \verbinclude Tutorial_BlockOperations_colrow.out
\section TutorialBlockOperationsSyntaxCorners Corner-related operations Eigen also provides special methods for blocks that are flushed against one of the corners or sides of a matrix or array. For instance, \link DenseBase::topLeftCorner() .topLeftCorner() \endlink can be used to refer to a block in the top-left corner of a matrix. Use matrix.topLeftCorner(p,q) to access the block consisting of the coefficients matrix(i,j) with \c i < \c p and \c j < \c q. As an other example, blocks consisting of whole rows flushed against the top side of the matrix can be accessed by \link DenseBase::topRows() .topRows() \endlink. The different possibilities are summarized in the following table:
\b %Block \b operation Default version Optimized version when the
size is known at compile time
Top-left p by q block \link DenseBase::topLeftCorner() * \endlink \code matrix.topLeftCorner(p,q);\endcode \code matrix.topLeftCorner();\endcode
Bottom-left p by q block \link DenseBase::bottomLeftCorner() * \endlink \code matrix.bottomLeftCorner(p,q);\endcode \code matrix.bottomLeftCorner();\endcode
Top-right p by q block \link DenseBase::topRightCorner() * \endlink \code matrix.topRightCorner(p,q);\endcode \code matrix.topRightCorner();\endcode
Bottom-right p by q block \link DenseBase::bottomRightCorner() * \endlink \code matrix.bottomRightCorner(p,q);\endcode \code matrix.bottomRightCorner();\endcode
%Block containing the first q rows \link DenseBase::topRows() * \endlink \code matrix.topRows(q);\endcode \code matrix.topRows();\endcode
%Block containing the last q rows \link DenseBase::bottomRows() * \endlink \code matrix.bottomRows(q);\endcode \code matrix.bottomRows();\endcode
%Block containing the first p columns \link DenseBase::leftCols() * \endlink \code matrix.leftCols(p);\endcode \code matrix.leftCols

();\endcode

%Block containing the last q columns \link DenseBase::rightCols() * \endlink \code matrix.rightCols(q);\endcode \code matrix.rightCols();\endcode
Here is a simple example illustrating the use of the operations presented above:
C++ code: \include Tutorial_BlockOperations_corner.cpp Output: \verbinclude Tutorial_BlockOperations_corner.out
\section TutorialBlockOperationsSyntaxVectors Block operations for vectors Eigen also provides a set of block operations designed specifically for vectors and one-dimensional arrays:
\b %Block \b operation Default version Optimized version when the
size is known at compile time
%Block containing the first \p n elements \link DenseBase::head() * \endlink \code vector.head(n);\endcode \code vector.head();\endcode
%Block containing the last \p n elements \link DenseBase::tail() * \endlink \code vector.tail(n);\endcode \code vector.tail();\endcode
%Block containing \p n elements, starting at position \p i \link DenseBase::segment() * \endlink \code vector.segment(i,n);\endcode \code vector.segment(i);\endcode
An example is presented below:
C++ code: \include Tutorial_BlockOperations_vector.cpp Output: \verbinclude Tutorial_BlockOperations_vector.out
\li \b Next: \ref TutorialAdvancedInitialization */ }