Lines Matching defs:m_matrix
78 LLT() : m_matrix(), m_isInitialized(false) {}
86 LLT(Index size) : m_matrix(size, size),
90 : m_matrix(matrix.rows(), matrix.cols()),
100 return Traits::getU(m_matrix);
107 return Traits::getL(m_matrix);
125 eigen_assert(m_matrix.rows()==b.rows()
153 return m_matrix;
170 inline Index rows() const { return m_matrix.rows(); }
171 inline Index cols() const { return m_matrix.cols(); }
181 MatrixType m_matrix;
387 m_matrix.resize(size, size);
388 m_matrix = a;
391 bool ok = Traits::inplace_decomposition(m_matrix);
407 eigen_assert(v.size()==m_matrix.cols());
409 if(internal::llt_inplace<typename MatrixType::Scalar, UpLo>::rankUpdate(m_matrix,v,sigma)>=0)
451 eigen_assert(m_matrix.rows()==bAndX.rows());
483 return LLT<PlainObject,UpLo>(m_matrix);