Avoid inefficient 2x2 LU. Move atanh to internal for maintainability.

This commit is contained in:
Chen-Pang He
2012-08-30 23:40:30 +08:00
parent 9da41cc527
commit d23134e4a7
4 changed files with 51 additions and 37 deletions

View File

@@ -79,7 +79,7 @@ temp = m2 * m3;
m1 += temp.adjoint(); \endcode</td>
<td>\code
m1.noalias() += m3.adjoint()
* * m2.adjoint(); \endcode</td>
* * m2.adjoint(); \endcode</td>
<td>This is because the product expression has the EvalBeforeNesting bit which
enforces the evaluation of the product by the Tranpose expression.</td>
</tr>