mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
4c92150676
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.
13 lines
169 B
Plaintext
13 lines
169 B
Plaintext
#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
|