HomeSort by relevance Sort by last modified time
    Searched defs:m_matrix (Results 26 - 32 of 32) sorted by null

12

  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 61 explicit inline SparseSelfAdjointView(MatrixType& matrix) : m_matrix(matrix)
66 inline Index rows() const { return m_matrix.rows(); }
67 inline Index cols() const { return m_matrix.cols(); }
70 const _MatrixTypeNested& matrix() const { return m_matrix; }
71 typename internal::remove_reference<MatrixTypeNested>::type& matrix() { return m_matrix; }
128 return SparseSymmetricPermutationProduct<_MatrixTypeNested,Mode>(m_matrix, perm);
161 MatrixTypeNested m_matrix; member in class:Eigen::SparseSelfAdjointView
197 m_matrix = tmp.template triangularView<Mode>();
199 m_matrix += alpha * tmp.template triangularView<Mode>();
613 : m_matrix(mat), m_perm(perm
623 MatrixTypeNested m_matrix; member in class:Eigen::SparseSymmetricPermutationProduct
    [all...]
SparseVector.h 425 explicit evaluator(const SparseVectorType &mat) : m_matrix(&mat)
431 return m_matrix->nonZeros();
434 operator SparseVectorType&() { return m_matrix->const_cast_derived(); }
435 operator const SparseVectorType&() const { return *m_matrix; }
437 const SparseVectorType *m_matrix; member in struct:Eigen::internal::evaluator
  /external/pdfium/xfa/fwl/
cfwl_themepart.h 84 CFX_Matrix m_matrix; member in class:CFWL_ThemePart
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 217 explicit inline TriangularView(MatrixType& matrix) : m_matrix(matrix)
226 inline Index rows() const { return m_matrix.rows(); }
229 inline Index cols() const { return m_matrix.cols(); }
233 const NestedExpression& nestedExpression() const { return m_matrix; }
237 NestedExpression& nestedExpression() { return m_matrix; }
243 { return ConjugateReturnType(m_matrix.conjugate()); }
249 { return AdjointReturnType(m_matrix.adjoint()); }
257 typename MatrixType::TransposeReturnType tmp(m_matrix);
266 return ConstTransposeReturnType(m_matrix.transpose());
294 return SelfAdjointView<MatrixTypeNestedNonRef,Mode>(m_matrix);
321 MatrixTypeNested m_matrix; member in class:Eigen::TriangularView
    [all...]
VectorwiseOp.h 66 : m_matrix(mat), m_functor(func) {}
69 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); }
71 Index cols() const { return (Direction==Horizontal ? 1 : m_matrix.cols()); }
74 typename MatrixType::Nested nestedExpression() const { return m_matrix; }
80 typename MatrixType::Nested m_matrix; member in class:Eigen::PartialReduxExpr
198 return SubVector(m_matrix.derived(),i);
205 { return isVertical?m_matrix.cols():m_matrix.rows(); }
226 isVertical ? 1 : m_matrix.rows(),
227 isHorizontal ? 1 : m_matrix.cols())
662 ExpressionTypeNested m_matrix; member in class:Eigen::VectorwiseOp
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 347 inline Index rows() const { return m_matrix.rows(); }
348 inline Index cols() const { return m_matrix.cols(); }
396 m_matrix = a;
398 m_sluA = internal::asSluMatrix(m_matrix);
450 mutable LUMatrixType m_matrix; // copy of the factorized matrix member in class:Eigen::SuperLUBase
571 using Base::m_matrix;
653 const Index size = m_matrix.rows();
719 const Index size = m_matrix.rows();
892 using Base::m_matrix;
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 250 MatrixType m_matrix; member in class:Eigen::Transform
259 internal::transform_make_affine<(int(Mode)==Affine) ? Affine : AffineCompact>::run(m_matrix);
265 m_matrix = other.m_matrix;
286 { m_matrix = other.m_matrix; return *this; }
317 m_matrix = other.matrix();
343 m_matrix.template block<Dim,Dim+1>(0,0) = other.matrix().template block<Dim,Dim+1>(0,0);
384 EIGEN_DEVICE_FUNC Index rows() const { return int(Mode)==int(Projective) ? m_matrix.cols() : (m_matrix.cols()-1);
    [all...]

Completed in 438 milliseconds

12