eigen/doc/examples/tut_matrix_resize_fixed_size.cpp
2010-06-25 10:04:35 -04:00

13 lines
229 B
C++

#include <iostream>
#include <Eigen/Dense>
using namespace Eigen;
int main()
{
Matrix4d m;
m.resize(4,4); // no operation
std::cout << "The matrix m is of size "
<< m.rows() << "x" << m.cols() << std::endl;
}