blob: e859ce55b72706fe47c486912bc06b0bbc39d99d [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
2A.setRandom();
3HouseholderQR<MatrixXf> qr(A);
4Q = qr.householderQ();
5thinQ = qr.householderQ() * thinQ;
6std::cout << "The complete unitary matrix Q is:\n" << Q << "\n\n";
7std::cout << "The thin matrix Q is:\n" << thinQ << "\n\n";