aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/BDCSVD
diff options
context:
space:
mode:
Diffstat (limited to 'unsupported/Eigen/BDCSVD')
-rw-r--r--unsupported/Eigen/BDCSVD26
1 files changed, 26 insertions, 0 deletions
diff --git a/unsupported/Eigen/BDCSVD b/unsupported/Eigen/BDCSVD
new file mode 100644
index 000000000..44649dbd0
--- /dev/null
+++ b/unsupported/Eigen/BDCSVD
@@ -0,0 +1,26 @@
+#ifndef EIGEN_BDCSVD_MODULE_H
+#define EIGEN_BDCSVD_MODULE_H
+
+#include <Eigen/SVD>
+
+#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
+
+/** \defgroup BDCSVD_Module BDCSVD module
+ *
+ *
+ *
+ * This module provides Divide & Conquer SVD decomposition for matrices (both real and complex).
+ * This decomposition is accessible via the following MatrixBase method:
+ * - MatrixBase::bdcSvd()
+ *
+ * \code
+ * #include <Eigen/BDCSVD>
+ * \endcode
+ */
+
+#include "src/BDCSVD/BDCSVD.h"
+
+#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
+
+#endif // EIGEN_BDCSVD_MODULE_H
+/* vim: set filetype=cpp et sw=2 ts=2 ai: */