aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/CwiseBinaryOp.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-07-26 20:40:29 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-07-26 20:40:29 +0000
commite77ccf29288a8536e11dc5ea4fadcf775e8a2b8a (patch)
tree23710b6b882d17c2939562c700c1299af0f26ff3 /Eigen/src/Core/CwiseBinaryOp.h
parent2940617e6f0abaf1d09b3f054687a0adac788505 (diff)
* Rewrite the triangular solver so that we can take advantage of our efficient matrix-vector products:
=> up to 6 times faster ! * Added DirectAccessBit to Part * Added an exemple of a cwise operator * Renamed perpendicular() => someOrthogonal() (geometry module) * Fix a weired bug in ei_constant_functor: the default copy constructor did not copy the imaginary part when the single member of the class is a complex...
Diffstat (limited to 'Eigen/src/Core/CwiseBinaryOp.h')
-rw-r--r--Eigen/src/Core/CwiseBinaryOp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/src/Core/CwiseBinaryOp.h b/Eigen/src/Core/CwiseBinaryOp.h
index 8df4097c3..ac5440c22 100644
--- a/Eigen/src/Core/CwiseBinaryOp.h
+++ b/Eigen/src/Core/CwiseBinaryOp.h
@@ -177,6 +177,11 @@ MatrixBase<Derived>::operator+=(const MatrixBase<OtherDerived>& other)
/** \returns an expression of the Schur product (coefficient wise product) of *this and \a other
*
+ * \addexample CwiseProduct \label How to perform a component wise product of two matrices.
+ *
+ * Example: \include Cwise_product.cpp
+ * Output: \verbinclude Cwise_product.out
+ *
* \sa class CwiseBinaryOp
*/
template<typename ExpressionType>