source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/snippets/ComplexSchur_matrixT.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 263 bytes
Line 
1MatrixXcf A = MatrixXcf::Random(4,4);
2cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
3ComplexSchur<MatrixXcf> schurOfA(A, false); // false means do not compute U
4cout << "The triangular matrix T is:" << endl << schurOfA.matrixT() << endl;
Note: See TracBrowser for help on using the repository browser.