aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-05-06 21:40:24 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-05-06 21:40:24 +0000
commit4f0af00e511fa6d2d6b89e099e8f1d19025d809c (patch)
tree212a76feb16a087eb025738268c6b015aa1796af /doc
parent0c0d38272e895c3d799f388b8dae67e04c7c0be1 (diff)
*add missing overloads of setZero, etc... that were mentioned in the tutorial
--->they go into Matrix as they resize. *add isConstant() alias to isApproxToConstant() *extend unit-test *change an assert into a static assert
Diffstat (limited to 'doc')
-rw-r--r--doc/C01_QuickStartGuide.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/C01_QuickStartGuide.dox b/doc/C01_QuickStartGuide.dox
index d7bec3bb7..4f6f9b3cf 100644
--- a/doc/C01_QuickStartGuide.dox
+++ b/doc/C01_QuickStartGuide.dox
@@ -167,7 +167,7 @@ x = VectorXf::Random(size);
x.setZero(size);
x.setOnes(size);
x.setConstant(size, value);
-x.setIdentity(size);
+N/A
x.setRandom(size);
\endcode
</td>