We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f7141 commit 9e09095Copy full SHA for 9e09095
src/decompositions/decompositions.cpp
@@ -15,6 +15,21 @@ namespace eigenpy
15
namespace bp = boost::python;
16
17
EigenSolverVisitor<Eigen::MatrixXd>::expose("EigenSolver");
18
+
19
+ {
20
+ using namespace Eigen;
21
+ bp::enum_<DecompositionOptions>("DecompositionOptions")
22
+ .value("ComputeFullU",ComputeFullU)
23
+ .value("ComputeThinU",ComputeThinU)
24
+ .value("ComputeFullV",ComputeFullV)
25
+ .value("ComputeThinV",ComputeThinV)
26
+ .value("EigenvaluesOnly",EigenvaluesOnly)
27
+ .value("ComputeEigenvectors",ComputeEigenvectors)
28
+ .value("Ax_lBx",Ax_lBx)
29
+ .value("ABx_lx",ABx_lx)
30
+ .value("BAx_lx",BAx_lx)
31
+ ;
32
+ }
33
34
}
35
} // namespace eigenpy
0 commit comments