mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-09 07:00:27 +08:00
e7d809d434
* use SelfAdjointView instead of Eigen2's SelfAdjoint flag. * add tests and documentation. * allow eigenvalues() for non-selfadjoint matrices. * they no longer depend only on SelfAdjointEigenSolver, so move them to a separate file
4 lines
132 B
C++
4 lines
132 B
C++
MatrixXd ones = MatrixXd::Ones(3,3);
|
|
cout << "The operator norm of the 3x3 matrix of ones is "
|
|
<< ones.operatorNorm() << endl;
|