dashboard
repositories
activity
search
login
lzh
/
A133
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat(eth0): add MAE0621A phy support
lin
2025-07-30
fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
[~lzh/A133.git]
/
android
/
external
/
eigen
/
doc
/
snippets
/
HouseholderQR_householderQ.cpp
1
2
3
4
5
6
7
MatrixXf A(MatrixXf::Random(5,3)), thinQ(MatrixXf::Identity(5,3)), Q;
A.setRandom();
HouseholderQR<MatrixXf> qr(A);
Q = qr.householderQ();
thinQ = qr.householderQ() * thinQ;
std::cout << "The complete unitary matrix Q is:\n" << Q << "\n\n";
std::cout << "The thin matrix Q is:\n" << thinQ << "\n\n";