AlphaFold3 / weight /_dep /eigen /doc /snippets /ComplexSchur_matrixU.cpp
wuxing0105's picture
Add files using upload-large-folder tool
5f4cece verified
Raw
History Blame Contribute Delete
221 Bytes
MatrixXcf A = MatrixXcf::Random(4,4);
cout << "Here is a random 4x4 matrix, A:" << endl << A << endl << endl;
ComplexSchur<MatrixXcf> schurOfA(A);
cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;