transpose matrix eigen c 2b 2b

Solutions on MaxInterview for transpose matrix eigen c 2b 2b by the best coders in the world

showing results for - "transpose matrix eigen c 2b 2b"
Heston
01 Oct 2019
1MatrixXcf a = MatrixXcf::Random(2,2);
2cout << "Here is the matrix a\n" << a << endl;
3 
4cout << "Here is the matrix a^T\n" << a.transpose() << endl;