diff options
Diffstat (limited to 'eigen/doc/TutorialArrayClass.dox')
-rw-r--r-- | eigen/doc/TutorialArrayClass.dox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eigen/doc/TutorialArrayClass.dox b/eigen/doc/TutorialArrayClass.dox index 6432684..f6f3510 100644 --- a/eigen/doc/TutorialArrayClass.dox +++ b/eigen/doc/TutorialArrayClass.dox @@ -157,7 +157,7 @@ The following example shows how to use array operations on a Matrix object by em * to multiply them coefficient-wise and assigns the result to the matrix variable \c result (this is legal because Eigen allows assigning array expressions to matrix variables). -As a matter of fact, this usage case is so common that Eigen provides a \link MatrixBase::cwiseProduct() const +As a matter of fact, this usage case is so common that Eigen provides a \link MatrixBase::cwiseProduct const .cwiseProduct(.) \endlink method for matrices to compute the coefficient-wise product. This is also shown in the example program. |