Difference between revisions of "Eigen"

From ProgrammingExamples
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
* [[CPP/Eigen/ProjectPoints|Project 3D points to 2D using a 3x4 projection (camera) matrix]]
 
* [[CPP/Eigen/ProjectPoints|Project 3D points to 2D using a 3x4 projection (camera) matrix]]
  
* [[CPP/Eigen/LevenbergMarquardt|LevenbergMarquardt]]
+
* [[CPP/Eigen/LevenbergMarquardt|LevenbergMarquardt Analytical Derivative]]
  
* [[CPP/Eigen/LevenbergMarquardtNumerical|LevenbergMarquardt]]
+
* [[CPP/Eigen/LevenbergMarquardtNumerical|LevenbergMarquardt Numerical Derivative]]
 +
 
 +
* [[CPP/Eigen/SparseMatrix|Sparse matrix]]
 +
 
 +
* [[CPP/Eigen/SimplicialLDLT|Symmetric sparse matrix solver (SimplicialLDLT)]]
 +
 
 +
* [[CPP/Eigen/STL vector of Eigen vectors|STLVector]]

Latest revision as of 06:18, 15 May 2015

The following examples are frequent use cases of parts of the Eigen (http://eigen.tuxfamily.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.