tut_matrix_resize_fixed_size.cpp
Go to the documentation of this file.
1 #include <iostream>
2 #include <Eigen/Dense>
3 
4 int main()
5 {
7  m.resize(4,4); // no operation
8  std::cout << "The matrix m is of size "
9  << m.rows() << "x" << m.cols() << std::endl;
10 }
Matrix3f m
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:182