aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/QR
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-04-26 18:26:05 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-04-26 18:26:05 +0000
commit4c92150676dea30748215549ba1b94df2624e652 (patch)
treeee382f99f565d46ac337162ac1943e6c15ee4757 /Eigen/QR
parent62bf0bbd5911bde451ec87b9a0337d2912b9206b (diff)
Added Triangular expression to extract upper or lower (strictly or not)
part of a matrix. Triangular also provide an optimised method for forward and backward substitution. Further optimizations regarding assignments and products might come later. Updated determinant() to take into account triangular matrices. Started the QR module with a QR decompostion algorithm. Help needed to build a QR algorithm (eigen solver) based on it.
Diffstat (limited to 'Eigen/QR')
-rw-r--r--Eigen/QR12
1 files changed, 12 insertions, 0 deletions
diff --git a/Eigen/QR b/Eigen/QR
new file mode 100644
index 000000000..2d166dcc6
--- /dev/null
+++ b/Eigen/QR
@@ -0,0 +1,12 @@
+#ifndef EIGEN_QR_MODULE_H
+#define EIGEN_QR_MODULE_H
+
+#include "Core"
+
+namespace Eigen {
+
+#include "Eigen/src/QR/QR.h"
+
+} // namespace Eigen
+
+#endif // EIGEN_QR_MODULE_H