blob: 1d12a6c670e4b9b97bd54c7cf66fdd27c107858a [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXf matA(2,2);
2matA << 2, 0, 0, 2;
3matA.noalias() = matA * matA;
4cout << matA;