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.h1452 struct unary_evaluator<MatrixWrapper<TArgType> >
1453 : evaluator_wrapper_base<MatrixWrapper<TArgType> >
1455 typedef MatrixWrapper<TArgType> XprType;
1459 : evaluator_wrapper_base<MatrixWrapper<TArgType> >(wrapper.nestedExpression())
/external/eigen/Eigen/src/IterativeLinearSolvers/
DConjugateGradient.h200 typedef typename Base::MatrixWrapper MatrixWrapper;
203 TransposeInput = (!MatrixWrapper::MatrixFree)
209 …EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJU…
212 … typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
DIterativeSolverBase.h416 typedef internal::generic_matrix_wrapper<MatrixType> MatrixWrapper; typedef
417 typedef typename MatrixWrapper::ActualMatrixType ActualMatrixType;
430 MatrixWrapper m_matrixWrapper;
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DMINRES.h238 typedef typename Base::MatrixWrapper MatrixWrapper;
241 TransposeInput = (!MatrixWrapper::MatrixFree)
247 …EIGEN_STATIC_ASSERT(EIGEN_IMPLIES(MatrixWrapper::MatrixFree,UpLo==(Lower|Upper)),MATRIX_FREE_CONJU…
250 … typename MatrixWrapper::template ConstSelfAdjointViewReturnType<UpLo>::Type
/external/eigen/test/
Darray_for_matrix.cpp256 MatrixWrapper<const Array4i> AM = A.matrix(); in regrrssion_bug_1410()
260 VERIFY((internal::traits<MatrixWrapper<const Array4i> >::Flags&LvalueBit)==0); in regrrssion_bug_1410()
263 VERIFY((internal::traits<MatrixWrapper<Array4i> >::Flags&LvalueBit)==LvalueBit); in regrrssion_bug_1410()
/external/eigen/Eigen/src/Core/util/
DForwardDeclarations.h129 template<typename ExpressionType> class MatrixWrapper;
/external/eigen/doc/
DQuickReference.dox78 MatrixWrapper<Array44f> a1m(a1);