blob: 20c2611b888babe979a4a25c56a56f0fcfcdfc78 [file] [log] [blame]
Jitse Niesen73d3a272010-04-12 18:14:32 +01001MatrixXf A = MatrixXf::Random(4,4);
2RealSchur<MatrixXf> schur(4);
Jitse Niesen8dc94782010-05-31 18:17:47 +01003schur.compute(A, /* computeU = */ false);
Jitse Niesen73d3a272010-04-12 18:14:32 +01004cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
Jitse Niesen8dc94782010-05-31 18:17:47 +01005schur.compute(A.inverse(), /* computeU = */ false);
Jitse Niesen73d3a272010-04-12 18:14:32 +01006cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;