aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/tutorial.cpp
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-09-27 19:38:40 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-09-27 19:38:40 +0000
commit5160e9d0292b7ebf39376803c5b7764f0f838714 (patch)
treef4c59929c888c4a0a18529f22e9c326947bf276b /doc/tutorial.cpp
parent4e299afb1f1f19f470920f63b39c5a91be138788 (diff)
Half-way commit prefixing object names. I am forced to commit now
because I renamed a file once with a wrong filename and svn refuses to let me rename it again, tells me i should propagate first.
Diffstat (limited to 'doc/tutorial.cpp')
-rw-r--r--doc/tutorial.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.cpp b/doc/tutorial.cpp
index 2eec7be3e..38943ec50 100644
--- a/doc/tutorial.cpp
+++ b/doc/tutorial.cpp
@@ -12,7 +12,7 @@ int main(int, char **)
cout << "Here is a 2x2 matrix m:" << endl << m << endl;
cout << "Let us now build a 4x4 matrix m2 by assembling together four 2x2 blocks." << endl;
- MatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries
+ EiMatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries
// notice how we are mixing fixed-size and dynamic-size types.
cout << "In the top-left block, we put the matrix m shown above." << endl;