compile_LLT_solve.cpp
Go to the documentation of this file.
00001 #include <Eigen/Core>
00002 #include <Eigen/LU>
00003 #include <Eigen/QR>
00004 #include <Eigen/Cholesky>
00005 #include <Eigen/Geometry>
00006 #include <Eigen/Jacobi>
00007 #include <Eigen/Eigenvalues>
00008 #include <iostream>
00009 
00010 using namespace Eigen;
00011 using namespace std;
00012 
00013 int main(int, char**)
00014 {
00015   cout.precision(3);
00016   typedef Matrix<float,Dynamic,2> DataMatrix;
00017 // let's generate some samples on the 3D plane of equation z = 2x+3y (with some noise)
00018 DataMatrix samples = DataMatrix::Random(12,2);
00019 VectorXf elevations = 2*samples.col(0) + 3*samples.col(1) + VectorXf::Random(12)*0.1;
00020 // and let's solve samples * [x y]^T = elevations in least square sense:
00021 Matrix<float,2,1> xy
00022  = (samples.adjoint() * samples).llt().solve((samples.adjoint()*elevations));
00023 cout << xy << endl;
00024 
00025   return 0;
00026 }


re_vision
Author(s): Dorian Galvez-Lopez
autogenerated on Sun Jan 5 2014 11:30:57