Home
last modified time | relevance | path

Searched refs:MatrixWrapper (Results 1 – 9 of 9) sorted by relevance

/external/eigen/Eigen/src/Core/
DArrayWrapper.h126 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) {}
DArrayBase.h15 template<typename ExpressionType> class MatrixWrapper; variable
148 MatrixWrapper<Derived> matrix() { return MatrixWrapper<Derived>(derived()); } in matrix()
150 …const MatrixWrapper<const Derived> matrix() const { return MatrixWrapper<const Derived>(derived())… in matrix()
DCoreEvaluators.h1388 struct unary_evaluator<MatrixWrapper<TArgType> >
1389 : evaluator_wrapper_base<MatrixWrapper<TArgType> >
1391 typedef MatrixWrapper<TArgType> XprType;
1394 : evaluator_wrapper_base<MatrixWrapper<TArgType> >(wrapper.nestedExpression())
/external/eigen/Eigen/src/IterativeLinearSolvers/
DConjugateGradient.h199 typedef typename Base::MatrixWrapper MatrixWrapper;
202 TransposeInput = (!MatrixWrapper::MatrixFree)
208 …EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJU…
211 … typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
DIterativeSolverBase.h366 typedef internal::generic_matrix_wrapper<MatrixType> MatrixWrapper; typedef
367 typedef typename MatrixWrapper::ActualMatrixType ActualMatrixType;
380 MatrixWrapper m_matrixWrapper;
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DMINRES.h242 typedef typename Base::MatrixWrapper MatrixWrapper;
245 TransposeInput = (!MatrixWrapper::MatrixFree)
251 …EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJU…
254 … typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
/external/eigen/test/
Darray_for_matrix.cpp253 MatrixWrapper<const Array4i> AM = A.matrix(); in regrrssion_bug_1410()
257 VERIFY((internal::traits<MatrixWrapper<const Array4i> >::Flags&LvalueBit)==0); in regrrssion_bug_1410()
260 VERIFY((internal::traits<MatrixWrapper<Array4i> >::Flags&LvalueBit)==LvalueBit); in regrrssion_bug_1410()
/external/eigen/Eigen/src/Core/util/
DForwardDeclarations.h131 template<typename ExpressionType> class MatrixWrapper;
/external/eigen/doc/
DQuickReference.dox78 MatrixWrapper<Array44f> a1m(a1);