aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core/DynBlock.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-24 11:14:25 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-12-24 11:14:25 +0000
commit3cd2a125b2712d6b7c620bef0671c6a05839d6e5 (patch)
tree039a066cff371aff4884e6bde9cc6b2921ff48c3 /Eigen/Core/DynBlock.h
parente9375836556a65b9cc5a55e49acdb823bc111a30 (diff)
- rework the coefficients API
- make vectors use a separate loop unroller, so that copying a row-vector into a col-vector is now possible - add much more documentation - misc improvements
Diffstat (limited to 'Eigen/Core/DynBlock.h')
-rw-r--r--Eigen/Core/DynBlock.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/Eigen/Core/DynBlock.h b/Eigen/Core/DynBlock.h
index cfd2cb082..2fd66746b 100644
--- a/Eigen/Core/DynBlock.h
+++ b/Eigen/Core/DynBlock.h
@@ -30,9 +30,11 @@
*
* \brief Expression of a dynamic-size block
*
+ * \param MatrixType the type of the object in which we are taking a block
+ *
* This class represents an expression of a dynamic-size block. It is the return
- * type of MatrixBase::dynBlock() and most of the time this is the only way this
- * class is used.
+ * type of MatrixBase::dynBlock() and most of the time this is the only way it
+ * is used.
*
* However, if you want to directly maniputate dynamic-size block expressions,
* for instance if you want to write a function returning such an expression, you
@@ -40,8 +42,7 @@
*
* Here is an example illustrating this:
* \include class_DynBlock.cpp
- * Output:
- * \verbinclude class_DynBlock.out
+ * Output: \verbinclude class_DynBlock.out
*
* \sa MatrixBase::dynBlock()
*/
@@ -101,12 +102,10 @@ template<typename MatrixType> class DynBlock
* \param blockRows the number of rows in the block
* \param blockCols the number of columns in the block
*
- * Example:
- * \include MatrixBase_dynBlock.cpp
- * Output:
- * \verbinclude MatrixBase_dynBlock.out
+ * Example: \include MatrixBase_dynBlock.cpp
+ * Output: \verbinclude MatrixBase_dynBlock.out
*
- * \sa class DynBlock
+ * \sa class DynBlock, block()
*/
template<typename Scalar, typename Derived>
DynBlock<Derived> MatrixBase<Scalar, Derived>