aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_eval.cpp
Commit message (Collapse)AuthorAge
* Make snippet run successfully again:Gravatar Benoit Jacob2010-01-04
| | | | | | the snippet for 'eval' was taking m=m.transpose() as an example of code that needs an explicit call to eval(), but that doesn't work anymore now that we have the clever assert detecting aliasing issues.
* bugfix in compute_matrix_flags, optimization in LU,Gravatar Gael Guennebaud2009-08-16
| | | | | improve doc, and workaround aliasing detection in MatrixBase_eval snippet (not very nice but I don't know how to do it in a better way)
* * Merge Extract and Part to the Part expression.Gravatar Gael Guennebaud2008-07-21
| | | | | | Renamed "MatrixBase::extract() const" to "MatrixBase::part() const" * Renamed static functions identity, zero, ones, random with an upper case first letter: Identity, Zero, Ones and Random.
* matrix storage order can now also be row-dominant (choosable for each matrix ↵Gravatar Benoit Jacob2007-12-27
separately) map() moves from MatrixBase to Matrix much more documentation/examples/snippets