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