diff options
author | Gael Guennebaud <g.gael@free.fr> | 2010-07-07 18:10:11 +0200 |
---|---|---|
committer | Gael Guennebaud <g.gael@free.fr> | 2010-07-07 18:10:11 +0200 |
commit | fc3fd8ab57b334f37cbd512baf99e9b1850153f8 (patch) | |
tree | d62ca3b350b7e55f34c61e462d189ce842542097 | |
parent | 861962c55f728a1eb68c0b6915c77e8c9b424cff (diff) |
mention that array = matrix is fine too
-rw-r--r-- | doc/C03_TutorialArrayClass.dox | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/C03_TutorialArrayClass.dox b/doc/C03_TutorialArrayClass.dox index e82631878..0828bf39b 100644 --- a/doc/C03_TutorialArrayClass.dox +++ b/doc/C03_TutorialArrayClass.dox @@ -129,7 +129,7 @@ Mixing matrices and arrays in an expression is forbidden with Eigen. However, it is easy to convert from one to the other with \link MatrixBase::array() .array() \endlink and \link ArrayBase::matrix() .matrix() \endlink. -On the other hand, assigning a matrix expression to an array expression is allowed. +On the other hand, assigning a matrix (resp. array) expression to an array (resp. matrix) expression is allowed. \subsection TutorialArrayClassInteropMatrix Matrix to array example The following example shows how to use array operations on a Matrix object by employing |