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

  /external/eigen/Eigen/src/Core/
ArrayWrapper.h 23 * \sa MatrixBase::array(), class MatrixWrapper
113 /** \class MatrixWrapper
126 struct traits<MatrixWrapper<ExpressionType> >
140 class MatrixWrapper : public MatrixBase<MatrixWrapper<ExpressionType> >
143 typedef MatrixBase<MatrixWrapper<ExpressionType> > Base;
144 EIGEN_DENSE_PUBLIC_INTERFACE(MatrixWrapper)
145 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(MatrixWrapper)
159 explicit inline MatrixWrapper(ExpressionType& matrix) : m_expression(matrix) {}
ArrayBase.h 15 template<typename ExpressionType> class MatrixWrapper;
148 MatrixWrapper<Derived> matrix() { return MatrixWrapper<Derived>(derived()); }
150 const MatrixWrapper<const Derived> matrix() const { return MatrixWrapper<const Derived>(derived()); }
CoreEvaluators.h 42 // - unary_evaluator for expressions taking only one arguments (CwiseUnaryOp, CwiseUnaryView, Transpose, MatrixWrapper, ArrayWrapper, Reverse, Replicate)
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 199 typedef typename Base::MatrixWrapper MatrixWrapper;
202 TransposeInput = (!MatrixWrapper::MatrixFree)
208 EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJUGATE_GRADIENT_IS_COMPATIBLE_WITH_UPPER_UNION_LOWER_MODE_ONLY);
211 typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
IterativeSolverBase.h 366 typedef internal::generic_matrix_wrapper<MatrixType> MatrixWrapper;
367 typedef typename MatrixWrapper::ActualMatrixType ActualMatrixType;
380 MatrixWrapper m_matrixWrapper;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 242 typedef typename Base::MatrixWrapper MatrixWrapper;
245 TransposeInput = (!MatrixWrapper::MatrixFree)
251 EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJUGATE_GRADIENT_IS_COMPATIBLE_WITH_UPPER_UNION_LOWER_MODE_ONLY);
254 typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
  /external/eigen/test/
array_for_matrix.cpp 253 MatrixWrapper<const Array4i> AM = A.matrix();
257 VERIFY((internal::traits<MatrixWrapper<const Array4i> >::Flags&LvalueBit)==0);
260 VERIFY((internal::traits<MatrixWrapper<Array4i> >::Flags&LvalueBit)==LvalueBit);
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 131 template<typename ExpressionType> class MatrixWrapper;

Completed in 695 milliseconds