1 MatrixXcf
A = MatrixXcf::Random(4,4);
2 HessenbergDecomposition<MatrixXcf>
hd(4);
4 cout <<
"The matrix H in the decomposition of A is:" << endl <<
hd.matrixH() << endl;
6 cout <<
"The matrix H in the decomposition of 2A is:" << endl <<
hd.matrixH() << endl;
HessenbergDecomposition< MatrixXcf > hd(4)