Example of eigendecomposition

This commit is contained in:
Simon Giraudot 2015-08-21 14:55:48 +02:00
parent 45cd7b58bb
commit edd823d2fd
3 changed files with 6 additions and 0 deletions

View File

@ -62,6 +62,10 @@ and this solver:
The class `Eigen_vcm_traits<T>` provides an interface to the
selfadjoint solver of the \ref thirdpartyEigen library.
This is an example of an eigendecomposition of a matrix using this
class:
\cgalExample{Solver_interface/eigen_variance_covariance_matrix.cpp}

View File

@ -1,3 +1,4 @@
/*!
\example Solver_interface/eigen_singular_value_decomposition.cpp
\example Solver_interface/eigen_variance_covariance_matrix.cpp
*/

View File

@ -25,6 +25,7 @@ if ( CGAL_FOUND )
include_directories (BEFORE "../include")
create_single_source_cgal_program( "eigen_singular_value_decomposition.cpp" )
create_single_source_cgal_program( "eigen_variance_covariance_matrix.cpp" )
else()