mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Update eigenvalues() and operatorNorm() methods in MatrixBase.
* 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
This commit is contained in:
3
doc/snippets/MatrixBase_operatorNorm.cpp
Normal file
3
doc/snippets/MatrixBase_operatorNorm.cpp
Normal file
@@ -0,0 +1,3 @@
|
||||
MatrixXd ones = MatrixXd::Ones(3,3);
|
||||
cout << "The operator norm of the 3x3 matrix of ones is "
|
||||
<< ones.operatorNorm() << endl;
|
||||
Reference in New Issue
Block a user