10 std::cout <<
"The matrix m is of size " 11 << m.rows() <<
"x" << m.cols() << std::endl;
12 std::cout <<
"It has " << m.size() <<
" coefficients" << std::endl;
15 std::cout <<
"The vector v is of size " << v.size() << std::endl;
16 std::cout <<
"As a matrix, v is of size " 17 << v.rows() <<
"x" << v.cols() << std::endl;
Namespace containing all symbols from the Eigen library.
Array< int, Dynamic, 1 > v