Go to the documentation of this file.00001 #include <iostream>
00002 #include <Eigen/Dense>
00003
00004 using namespace Eigen;
00005
00006 int main()
00007 {
00008 Matrix4d m;
00009 m.resize(4,4);
00010 std::cout << "The matrix m is of size "
00011 << m.rows() << "x" << m.cols() << std::endl;
00012 }