OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SparseQR
(Results
1 - 4
of
4
) sorted by null
/external/eigen/Eigen/src/SparseQR/
SparseQR.h
16
template<typename MatrixType, typename OrderingType> class
SparseQR
;
39
* \class
SparseQR
65
class
SparseQR
78
SparseQR
() : m_isInitialized(false), m_analysisIsok(false), m_lastError(""), m_useDefaultThreshold(true),m_isQSorted(false)
87
SparseQR
(const MatrixType& mat) : m_isInitialized(false), m_analysisIsok(false), m_lastError(""), m_useDefaultThreshold(true),m_isQSorted(false)
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
, Rhs> solve(const MatrixBase<Rhs>& B) const
[
all
...]
/external/eigen/test/
sparseqr.cpp
10
#include <Eigen/
SparseQR
>
52
SparseQR
<MatrixType, COLAMDOrdering<int> > solver;
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h
76
typedef
SparseQR
<JacobianType, COLAMDOrdering<int> > QRSolver;
/external/ceres-solver/internal/ceres/
covariance_impl.cc
44
//
SparseQR
in Eigen 3.2.0. This was fixed in Eigen 3.2.1, but 3.2.0 is still
53
#include "Eigen/
SparseQR
"
669
// Convert the matrix to column major order as required by
SparseQR
.
677
Eigen::
SparseQR
<EigenSparseMatrix, Eigen::COLAMDOrdering<int> >
682
LOG(ERROR) << "Eigen::
SparseQR
decomposition failed.";
Completed in 1294 milliseconds