2010-06-25 10:04:35 -04:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <Eigen/Dense>
|
|
|
|
|
|
|
|
|
|
int main() {
|
2021-12-07 19:57:38 +00:00
|
|
|
Eigen::Matrix4d m;
|
2010-06-25 10:04:35 -04:00
|
|
|
m.resize(4, 4); // no operation
|
|
|
|
|
std::cout << "The matrix m is of size " << m.rows() << "x" << m.cols() << std::endl;
|
|
|
|
|
}
|