fix filename

This commit is contained in:
Gael Guennebaud 2010-06-27 23:45:37 +02:00
parent f98c758f61
commit ca29620e25

View File

@ -0,0 +1,5 @@
MatrixXf a(2,2);
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;