aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-01-28 10:00:34 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2011-01-28 10:00:34 -0500
commit6f2ba1f52bdda2c477828a5ad00af75329d30ca2 (patch)
tree35cfbe2a95f0e47ed85a1a9cd9a0fa8fdb89faa5 /doc
parent817d86cbaf04a6f92a7945b8cd5f3a8865c2dfbd (diff)
typo reported by Don Lorenzo
Diffstat (limited to 'doc')
-rw-r--r--doc/C05_TutorialAdvancedInitialization.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/C05_TutorialAdvancedInitialization.dox b/doc/C05_TutorialAdvancedInitialization.dox
index cb8fb6633..b6293bef2 100644
--- a/doc/C05_TutorialAdvancedInitialization.dox
+++ b/doc/C05_TutorialAdvancedInitialization.dox
@@ -81,7 +81,7 @@ argument, as in <tt>MatrixXd::Constant(rows, cols, value)</tt>. The method \link
\endlink fills the matrix or array with random coefficients. The identity matrix can be obtained by calling
\link MatrixBase::Identity() Identity()\endlink; this method is only available for Matrix, not for Array,
because "identity matrix" is a linear algebra concept. The method
-\link DenseBase::LinSpaced LinSpaced\endlink(low, high, size) is only available for vectors and
+\link DenseBase::LinSpaced LinSpaced\endlink(size, low, high) is only available for vectors and
one-dimensional arrays; it yields a vector of the specified size whose coefficients are equally spaced between
\c low and \c high. The method \c LinSpaced() is illustrated in the following example, which prints a table
with angles in degrees, the corresponding angle in radians, and their sine and cosine.