doc updates/improvements

This commit is contained in:
Benoit Jacob
2010-10-15 09:44:43 -04:00
parent fcee1903be
commit 26129229ec
6 changed files with 38 additions and 24 deletions

View File

@@ -0,0 +1,15 @@
#include <iostream>
#include <Eigen/Dense>
using namespace std;
using namespace Eigen;
int main()
{
MatrixXf A = MatrixXf::Random(3, 2);
cout << "Here is the matrix A:\n" << A << endl;
VectorXf b = VectorXf::Random(3);
cout << "Here is the right hand side b:\n" << b << endl;
JacobiSVD<MatrixXf> svd(A, ComputeThinU | ComputeThinV);
cout << "The least-squares solution is:\n" << svd.solve(b) << endl;
}