blob: 96e40acfbc4423609f8ddb21fb0249d9fbd8a91d [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXf matA(2, 2);
2matA << 1, 2, 3, 4;
3MatrixXf matB(4, 4);
4matB << matA, matA/10, matA/10, matA;
5std::cout << matB << std::endl;