2007-12-28 16:20:00 +00:00
|
|
|
#include <Eigen/Core>
|
2008-05-29 03:12:30 +00:00
|
|
|
#include <Eigen/LU>
|
2009-01-28 09:45:53 +00:00
|
|
|
#include <Eigen/QR>
|
2008-07-19 22:59:05 +00:00
|
|
|
#include <Eigen/Cholesky>
|
|
|
|
|
#include <Eigen/Geometry>
|
2009-09-03 11:17:16 +02:00
|
|
|
#include <Eigen/Jacobi>
|
2008-07-15 23:56:17 +00:00
|
|
|
|
2008-07-19 22:59:05 +00:00
|
|
|
using namespace Eigen;
|
2007-12-21 09:30:32 +00:00
|
|
|
using namespace std;
|
2008-07-15 23:56:17 +00:00
|
|
|
|
2007-12-21 09:30:32 +00:00
|
|
|
int main(int, char**)
|
|
|
|
|
{
|
2008-07-15 23:56:17 +00:00
|
|
|
${snippet_source_code}
|
|
|
|
|
return 0;
|
2007-12-21 09:30:32 +00:00
|
|
|
}
|