1MatrixXf matA(2, 2);
2matA << 1, 2, 3, 4;
3MatrixXf matB(4, 4);
4matB << matA, matA/10, matA/10, matA;
5std::cout << matB << std::endl;
6