Small changes to tutorial page 1.

This commit is contained in:
Jitse Niesen
2010-07-06 10:48:25 +01:00
parent d849bc4401
commit 3428d80d20
3 changed files with 33 additions and 32 deletions

View File

@@ -1,5 +1,5 @@
MatrixXf a(2,2);
cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
MatrixXf b(3,3);
a = b;
cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;