Searched defs:SparseQR (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h16 template<typename MatrixType, typename OrderingType> class SparseQR;
39 * \class SparseQR
65 class SparseQR class in namespace:Eigen
78 SparseQR () : m_isInitialized(false), m_analysisIsok(false), m_lastError(""), m_useDefaultThreshold(true),m_isQSorted(false) function in class:Eigen::SparseQR
87 SparseQR(const MatrixType& mat) : m_isInitialized(false), m_analysisIsok(false), m_lastError(""), m_useDefaultThreshold(true),m_isQSorted(false) function in class:Eigen::SparseQR
139 * Q = SparseQR<SparseMatrix<double> >(A).matrixQ();
146 SparseQRMatrixQReturnType<SparseQR> matrixQ() const
147 { return SparseQRMatrixQReturnType<SparseQR>(*this); }
168 eigen_assert(this->rows() == B.rows() && "SparseQR::solve() : invalid number of rows in the right hand side matrix");
207 inline const internal::solve_retval<SparseQR, Rh
[all...]

Completed in 783 milliseconds