mirror of https://github.com/CGAL/cgal
Example of eigendecomposition
This commit is contained in:
parent
45cd7b58bb
commit
edd823d2fd
|
|
@ -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}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
/*!
|
||||
\example Solver_interface/eigen_singular_value_decomposition.cpp
|
||||
\example Solver_interface/eigen_variance_covariance_matrix.cpp
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue