Extend documentation and add examples for EigenSolver class.

This commit is contained in:
Jitse Niesen
2010-03-31 11:59:11 +01:00
parent 338ec0390f
commit 1b3f7f2fee
6 changed files with 202 additions and 53 deletions

View File

@@ -0,0 +1,4 @@
MatrixXd ones = MatrixXd::Ones(3,3);
EigenSolver<MatrixXd> es(ones);
cout << "The eigenvalues of the 3x3 matrix of ones are:"
<< endl << es.eigenvalues() << endl;