* 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...
This commit is contained in:
Gael Guennebaud
2008-07-26 20:40:29 +00:00
parent 2940617e6f
commit e77ccf2928
11 changed files with 209 additions and 54 deletions

View File

@@ -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>