HomeSort by relevance Sort by last modified time
    Searched defs:m_mat (Results 1 - 3 of 3) sorted by null

  /external/eigen/test/
constructor.cpp 17 MatrixType m_mat; member in struct:Wrapper
18 inline Wrapper(const MatrixType &x) : m_mat(x) {}
19 inline operator const MatrixType& () const { return m_mat; }
20 inline operator MatrixType& () { return m_mat; }
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MatrixMarketIterator.h 77 if (m_matIsLoaded) return m_mat;
80 if ( !loadMarket(m_mat, matrix_file))
84 return m_mat;
91 RealScalar diag_norm = m_mat.diagonal().norm();
92 RealScalar lower_norm = m_mat.template triangularView<Lower>().norm();
93 RealScalar upper_norm = m_mat.template triangularView<Upper>().norm();
97 MatrixType tmp(m_mat);
98 m_mat = tmp.template selfadjointView<Lower>();
103 MatrixType tmp(m_mat);
104 m_mat = tmp.template selfadjointView<Upper>()
231 MatrixType m_mat; \/\/ Current matrix member in class:Eigen::MatrixMarketIterator
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 132 inline Index rows() const { return m_mat.rows(); }
133 inline Index cols() const { return m_mat.cols(); }
375 NCMatrix m_mat; // The input (permuted ) matrix member in class:Eigen::SparseLU
417 m_mat = mat;
421 ord(m_mat,m_perm_c);
426 m_mat.uncompress(); //NOTE: The effect of this command is only to create the InnerNonzeros pointers. FIXME : This vector is filled but not subsequently used.
430 // If the input matrix 'mat' is uncompressed, then the outer-indices do not match the ones of m_mat, and a copy is thus needed.
432 IndexVector::Map(outerIndexPtr, mat.cols()+1) = IndexVector::Map(m_mat.outerIndexPtr(),mat.cols()+1);
437 m_mat.outerIndexPtr()[m_perm_c.indices()(i)] = outerIndexPtr[i];
438 m_mat.innerNonZeroPtr()[m_perm_c.indices()(i)] = outerIndexPtr[i+1] - outerIndexPtr[i]
    [all...]

Completed in 1918 milliseconds