decompositions.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2020 INRIA
3  */
4 
5 #include "eigenpy/fwd.hpp"
6 
8 
13 
14 namespace eigenpy
15 {
17  {
18  using namespace Eigen;
19  namespace bp = boost::python;
20 
22  SelfAdjointEigenSolverVisitor<MatrixXd>::expose("SelfAdjointEigenSolver");
25 
26  {
27  bp::enum_<DecompositionOptions>("DecompositionOptions")
28  .value("ComputeFullU",ComputeFullU)
29  .value("ComputeThinU",ComputeThinU)
30  .value("ComputeFullV",ComputeFullV)
31  .value("ComputeThinV",ComputeThinV)
32  .value("EigenvaluesOnly",EigenvaluesOnly)
33  .value("ComputeEigenvectors",ComputeEigenvectors)
34  .value("Ax_lBx",Ax_lBx)
35  .value("ABx_lx",ABx_lx)
36  .value("BAx_lx",BAx_lx)
37  ;
38  }
39 
40  }
41 } // namespace eigenpy
Definition: complex.cpp:7
void EIGENPY_DLLAPI exposeDecompositions()
static void expose()
Definition: LDLT.hpp:89
static void expose()
Definition: LLT.hpp:80


eigenpy
Author(s): Justin Carpentier, Nicolas Mansard
autogenerated on Sat Apr 17 2021 02:37:59