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

  /external/ceres-solver/include/ceres/internal/
eigen.h 52 Eigen::ColMajor> ColMajorMatrix;
54 typedef Eigen::Map<ColMajorMatrix, 0,
57 typedef Eigen::Map<const ColMajorMatrix,
  /external/eigen/Eigen/src/SparseCore/
SparseSparseProductWithPruning.h 129 typedef SparseMatrix<typename ResultType::Scalar,ColMajor> ColMajorMatrix;
130 ColMajorMatrix colLhs(lhs);
131 ColMajorMatrix colRhs(rhs);
132 internal::sparse_sparse_product_with_pruning_impl<ColMajorMatrix,ColMajorMatrix,ResultType>(colLhs, colRhs, res, tolerance);
ConservativeSparseSparseProduct.h 138 typedef SparseMatrix<typename ResultType::Scalar,ColMajor> ColMajorMatrix;
139 ColMajorMatrix resCol(lhs.rows(),rhs.cols());
140 internal::conservative_sparse_sparse_product_impl<Lhs,Rhs,ColMajorMatrix>(lhs, rhs, resCol);
193 typedef SparseMatrix<typename ResultType::Scalar,ColMajor> ColMajorMatrix;
194 ColMajorMatrix resCol(lhs.rows(), rhs.cols());
195 internal::conservative_sparse_sparse_product_impl<Lhs,Rhs,ColMajorMatrix>(lhs, rhs, resCol);
205 typedef SparseMatrix<typename ResultType::Scalar,ColMajor> ColMajorMatrix;
206 ColMajorMatrix lhsCol = lhs;
207 ColMajorMatrix resCol(lhs.rows(), rhs.cols());
208 internal::conservative_sparse_sparse_product_impl<ColMajorMatrix,Rhs,ColMajorMatrix>(lhsCol, rhs, resCol)
    [all...]

Completed in 235 milliseconds