HomeSort by relevance Sort by last modified time
    Searched refs:m_lu (Results 1 - 5 of 5) sorted by null

  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 37 : /*m_matrix(matrix.rows(), matrix.cols()),*/ m_flags(flags), m_status(0), m_lu(matrix) {
39 m_lu.IsRowMajor ? computeRowMajor() : compute();
112 MatrixType& m_lu; member in class:Eigen::SkylineInplaceLU
121 const size_t rows = m_lu.rows();
122 const size_t cols = m_lu.cols();
125 eigen_assert(!m_lu.IsRowMajor && "LU decomposition does not work with rowMajor Storage");
128 const double pivot = m_lu.coeffDiag(row);
132 for (typename MatrixType::InnerLowerIterator lIt(m_lu, col); lIt; ++lIt) {
137 typename MatrixType::InnerLowerIterator lIt(m_lu, col);
138 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++)
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 34 Index rows() const { return m_lu.rows(); }
35 Index cols() const { return m_lu.cols(); }
40 m_lu = mat;
45 typename FactorType::InnerIterator k_it(m_lu,i);
52 typename FactorType::InnerIterator kj_it(m_lu, k);
76 x = m_lu.template triangularView<UnitLower>().solve(b);
77 x = m_lu.template triangularView<Upper>().solve(x);
90 FactorType m_lu; member in class:Eigen::IncompleteLU
  /external/eigen/Eigen/src/LU/
FullPivLU.h 107 return m_lu;
286 : NumTraits<Scalar>::epsilon() * m_lu.diagonalSize();
302 result += (abs(m_lu.coeff(i,i)) > premultiplied_threshold);
353 return isInjective() && (m_lu.rows() == m_lu.cols());
366 eigen_assert(m_lu.rows() == m_lu.cols() && "You can't take the inverse of a non-square matrix!");
368 (*this, MatrixType::Identity(m_lu.rows(), m_lu.cols()));
373 inline Index rows() const { return m_lu.rows();
377 MatrixType m_lu; member in class:Eigen::FullPivLU
    [all...]
PartialPivLU.h 103 return m_lu;
150 (*this, MatrixType::Identity(m_lu.rows(), m_lu.cols()));
170 inline Index rows() const { return m_lu.rows(); }
171 inline Index cols() const { return m_lu.cols(); }
174 MatrixType m_lu; member in class:Eigen::PartialPivLU
183 : m_lu(),
193 : m_lu(size, size),
203 : m_lu(matrix.rows(), matrix.rows()),
392 m_lu = matrix
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h 122 Index rows() const { return m_lu.rows(); }
124 Index cols() const { return m_lu.cols(); }
164 x = m_lu.template triangularView<UnitLower>().solve(x);
165 x = m_lu.template triangularView<Upper>().solve(x);
190 FactorType m_lu; member in class:Eigen::IncompleteLUT
250 m_lu.resize(n,n);
273 m_lu.reserve(n * (nnzL + nnzU + 1));
346 typename FactorType::InnerIterator ki_it(m_lu, minrow);
398 // 4 - partially sort and insert the elements in the m_lu matrix
408 m_lu.startVec(ii)
    [all...]

Completed in 94 milliseconds