diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox index 59dc74fa2..58f536dea 100644 --- a/doc/QuickReference.dox +++ b/doc/QuickReference.dox @@ -10,6 +10,7 @@ namespace Eigen { - \ref QuickRef_Coeffwise - \ref QuickRef_Reductions - \ref QuickRef_Blocks + - \ref QuickRef_Misc - \ref QuickRef_DiagTriSymm \n @@ -525,6 +526,24 @@ Read-write access to sub-matrices: +top\section QuickRef_Misc Miscellaneous operations + +\subsection QuickRef_Reverse Reverse +Vectors, rows, and/or columns of a matrix can be reversed (see DenseBase::reverse(), DenseBase::reverseInPlace(), VectorwiseOp::reverse()). +\code +vec.reverse() mat.colwise().reverse() mat.rowwise().reverse() +vec.reverseInPlace() +\endcode + +\subsection QuickRef_Reverse Replicate +Vectors, matrices, rows, and/or columns can be replicated in any direction (see DenseBase::replicate(), VectorwiseOp::replicate()) +\code +vec.replicate(times) vec.replicate +mat.replicate(vertical_times, horizontal_times) mat.replicate() +mat.colwise().replicate(vertical_times, horizontal_times) mat.colwise().replicate() +mat.rowwise().replicate(vertical_times, horizontal_times) mat.rowwise().replicate() +\endcode + top\section QuickRef_DiagTriSymm Diagonal, Triangular, and Self-adjoint matrices (matrix world \matrixworld)