Searched refs:m_mat (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | MatrixMarketIterator.h | 77 if (m_matIsLoaded) return m_mat; in matrix() 80 if ( !loadMarket(m_mat, matrix_file)) in matrix() 84 return m_mat; in matrix() 91 RealScalar diag_norm = m_mat.diagonal().norm(); in matrix() 92 RealScalar lower_norm = m_mat.template triangularView<Lower>().norm(); in matrix() 93 RealScalar upper_norm = m_mat.template triangularView<Upper>().norm(); in matrix() 97 MatrixType tmp(m_mat); in matrix() 98 m_mat = tmp.template selfadjointView<Lower>(); in matrix() 103 MatrixType tmp(m_mat); in matrix() 104 m_mat = tmp.template selfadjointView<Upper>(); in matrix() [all …]
|
D | BlockSparseMatrix.h | 981 : m_mat(mat),m_outer(outer), 991 return Map<const BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]), 996 return Map<BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]), 1000 inline Index index() const {return m_mat.m_indices[m_id]; } 1007 …ex rows() const { return (m_mat.m_blockSize==Dynamic) ? (m_mat.m_innerOffset[index()+1] - m_mat.m_… 1009 …dex cols() const { return (m_mat.m_blockSize==Dynamic) ? (m_mat.m_outerOffset[m_outer+1]-m_mat.m_o… 1013 const BlockSparseMatrix<_Scalar, _BlockAtCompileTime, _Options, StorageIndex>& m_mat; 1024 : m_mat(mat),m_outerB(mat.outerToBlock(outer)),m_outer(outer), 1030 m_id = m_mat.blockInnerIndex(itb.index()); 1032 m_end = m_mat.blockInnerIndex(itb.index()+1); [all …]
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU.h | 132 inline Index rows() const { return m_mat.rows(); } in rows() 133 inline Index cols() const { return m_mat.cols(); } in cols() 375 NCMatrix m_mat; // The input (permuted ) matrix variable 417 m_mat = mat; in analyzePattern() 421 ord(m_mat,m_perm_c); in analyzePattern() 426 …m_mat.uncompress(); //NOTE: The effect of this command is only to create the InnerNonzeros pointer… in analyzePattern() 432 …IndexVector::Map(outerIndexPtr, mat.cols()+1) = IndexVector::Map(m_mat.outerIndexPtr(),mat.cols()+… in analyzePattern() 437 m_mat.outerIndexPtr()[m_perm_c.indices()(i)] = outerIndexPtr[i]; in analyzePattern() 438 m_mat.innerNonZeroPtr()[m_perm_c.indices()(i)] = outerIndexPtr[i+1] - outerIndexPtr[i]; in analyzePattern() 444 internal::coletree(m_mat, m_etree,firstRowElt); in analyzePattern() [all …]
|
/external/eigen/test/ |
D | constructor.cpp | 17 MatrixType m_mat; member 18 inline Wrapper(const MatrixType &x) : m_mat(x) {} in Wrapper() 19 inline operator const MatrixType& () const { return m_mat; } in operator const MatrixType&() 20 inline operator MatrixType& () { return m_mat; } in operator MatrixType&()
|