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

  /external/eigen/Eigen/src/SparseCore/
MappedSparseMatrix.h 15 /** \class MappedSparseMatrix
26 struct traits<MappedSparseMatrix<_Scalar, _Flags, _Index> > : traits<SparseMatrix<_Scalar, _Flags, _Index> >
31 class MappedSparseMatrix
32 : public SparseMatrixBase<MappedSparseMatrix<_Scalar, _Flags, _Index> >
35 EIGEN_SPARSE_PUBLIC_INTERFACE(MappedSparseMatrix)
108 inline MappedSparseMatrix(Index rows, Index cols, Index nnz, Index* outerIndexPtr, Index* innerIndexPtr, Scalar* valuePtr)
114 inline ~MappedSparseMatrix() {}
118 class MappedSparseMatrix<Scalar,_Flags,_Index>::InnerIterator
121 InnerIterator(const MappedSparseMatrix& mat, Index outer)
141 const MappedSparseMatrix& m_matrix
    [all...]
SparseUtil.h 74 template<typename _Scalar, int _Flags = 0, typename _Index = int> class MappedSparseMatrix;
SparseMatrix.h 93 typedef MappedSparseMatrix<Scalar,Flags> Map;
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 144 SparseLUMatrixUReturnType<SCMatrix,MappedSparseMatrix<Scalar,ColMajor,Index> > matrixU() const
146 return SparseLUMatrixUReturnType<SCMatrix, MappedSparseMatrix<Scalar,ColMajor,Index> >(m_Lstore, m_Ustore);
337 MappedSparseMatrix<Scalar,ColMajor,Index> m_Ustore; // The upper triangular matrix
649 new (&m_Ustore) MappedSparseMatrix<Scalar, ColMajor, Index> ( m, n, m_nnzU, m_glu.xusub.data(), m_glu.usub.data(), m_glu.ucol.data() );
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 142 MappedSparseMatrix<Scalar,Flags,Index> viewAsEigen(cholmod_sparse& cm)
144 return MappedSparseMatrix<Scalar,Flags,Index>
  /external/ceres-solver/internal/ceres/
sparse_normal_cholesky_solver.cc 173 Eigen::MappedSparseMatrix<double, Eigen::ColMajor> AtA(
schur_complement_solver.cc 471 Eigen::MappedSparseMatrix<double, Eigen::ColMajor> eigen_lhs(
covariance_impl.cc 671 Eigen::MappedSparseMatrix<double, Eigen::RowMajor>(
  /external/eigen/test/
sparse_solvers.cpp 65 MappedSparseMatrix<Scalar> mm2(rows, cols, cm2.nonZeros(), cm2.outerIndexPtr(), cm2.innerIndexPtr(), cm2.valuePtr());
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 64 typedef MappedSparseMatrix<Scalar,Flags> Map;
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 272 MappedSparseMatrix<Scalar,Flags,Index> map_superlu(SluMatrix& sluMat)
279 return MappedSparseMatrix<Scalar,Flags,Index>(

Completed in 306 milliseconds