/external/eigen/Eigen/src/Eigenvalues/ |
H A D | MatrixBaseEigenvalues.h | 25 typedef typename Derived::PlainObject PlainObject; typedef 26 PlainObject m_eval(m); 27 return ComplexEigenSolver<PlainObject>(m_eval, false).eigenvalues(); 37 typedef typename Derived::PlainObject PlainObject; typedef 38 PlainObject m_eval(m); 39 return EigenSolver<PlainObject>(m_eval, false).eigenvalues(); 91 typedef typename SelfAdjointView<MatrixType, UpLo>::PlainObject PlainObject; typedef [all...] |
/external/eigen/Eigen/src/plugins/ |
H A D | ArrayCwiseBinaryOps.h | 37 const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > 45 return (min)(Derived::PlainObject::Constant(rows(), cols(), other)); 62 const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > 70 return (max)(Derived::PlainObject::Constant(rows(), cols(), other)); 81 typedef CwiseBinaryOp<internal::scalar_cmp_op<Scalar, internal::cmp_ ## COMPARATOR>, const Derived, const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > Cmp ## COMPARATOR ## ReturnType; \ 82 typedef CwiseBinaryOp<internal::scalar_cmp_op<Scalar, internal::cmp_ ## COMPARATOR>, const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject>, const Derived > RCmp ## COMPARATOR ## ReturnType; \ 85 return this->OP(Derived::PlainObject::Constant(rows(), cols(), s)); \ 89 return Derived::PlainObject::Constant(d.rows(), d.cols(), s).OP(d); \ 102 return Derived::PlainObject::Constant(rows(), cols(), s).R_OP(*this); \ 106 return d.R_OP(Derived::PlainObject [all...] |
/external/eigen/Eigen/src/Eigen2Support/ |
H A D | LU.h | 94 inline const LU<typename MatrixBase<Derived>::PlainObject> 97 return LU<PlainObject>(eval()); 111 inline const LU<typename MatrixBase<Derived>::PlainObject> 114 return LU<PlainObject>(eval());
|
H A D | QR.h | 59 const QR<typename MatrixBase<Derived>::PlainObject> 62 return QR<PlainObject>(eval());
|
H A D | TriangularSolver.h | 27 typename ExpressionType::PlainObject
|
/external/eigen/Eigen/src/Core/ |
H A D | SelfCwiseBinaryOp.h | 174 typedef typename Derived::PlainObject PlainObject; typedef 175 SelfCwiseBinaryOp<internal::scalar_product_op<Scalar>, Derived, typename PlainObject::ConstantReturnType> tmp(derived()); 176 tmp = PlainObject::Constant(rows(),cols(),other); 186 typedef typename Derived::PlainObject PlainObject; typedef 187 SelfCwiseBinaryOp<BinOp, Derived, typename PlainObject::ConstantReturnType> tmp(derived()); 191 tmp = PlainObject::Constant(rows(),cols(), actual_other);
|
H A D | ProductBase.h | 89 typedef typename Base::PlainObject BasePlainObject; 92 BasePlainObject, DynPlainObject>::type PlainObject; 94 typedef typename Base::PlainObject PlainObject; 124 operator const PlainObject& () const 181 mutable PlainObject m_result; 187 template<typename Lhs, typename Rhs, int Mode, int N, typename PlainObject> 188 struct nested<GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject> 190 typedef typename GeneralProduct<Lhs,Rhs,Mode>::PlainObject const& type; 192 template<typename Lhs, typename Rhs, int Mode, int N, typename PlainObject> 253 typedef typename Base::PlainObject PlainObject; typedef in class:ScaledProduct [all...] |
H A D | MatrixBase.h | 107 * that the return type of eval() is either PlainObject or const PlainObject&. 115 > PlainObject; typedef in class:Eigen::MatrixBase 208 const PlainObject normalized() const; 321 const FullPivLU<PlainObject> fullPivLu() const; 322 const PartialPivLU<PlainObject> partialPivLu() const; 325 const LU<PlainObject> lu() const; 329 const LU<PlainObject> eigen2_lu() const; 333 const PartialPivLU<PlainObject> lu() const; 361 const LLT<PlainObject> ll [all...] |
H A D | EigenBase.h | 28 // typedef typename internal::plain_matrix_type<Derived>::type PlainObject; 60 typename Dest::PlainObject res(rows(),cols()); 70 typename Dest::PlainObject res(rows(),cols());
|
H A D | ReturnByValue.h | 42 template<typename Derived,int n,typename PlainObject> 43 struct nested<ReturnByValue<Derived>, n, PlainObject>
|
H A D | SelfAdjointView.h | 38 typedef typename MatrixType::PlainObject DenseMatrixType; 70 typedef typename MatrixType::PlainObject PlainObject; typedef in class:Eigen::SelfAdjointView 152 const LLT<PlainObject, UpLo> llt() const; 153 const LDLT<PlainObject, UpLo> ldlt() const;
|
H A D | Flagged.h | 115 typename ExpressionType::PlainObject solveTriangular(const MatrixBase<OtherDerived>& other) const;
|
H A D | Array.h | 51 typedef typename Base::PlainObject PlainObject; typedef in class:Eigen::Array
|
/external/eigen/Eigen/src/Core/util/ |
H A D | XprHelper.h | 208 // typedef typename T::PlainObject type; 316 template<typename T, int n=1, typename PlainObject = typename eval<T>::type> struct nested 338 PlainObject, 416 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType; 418 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType; 431 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType; 433 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType; 448 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType; 449 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
|
/external/eigen/Eigen/src/Householder/ |
H A D | Householder.h | 123 Map<typename internal::plain_row_type<PlainObject>::type> tmp(workspace,cols()); 160 Map<typename internal::plain_col_type<PlainObject>::type> tmp(workspace,rows());
|
/external/eigen/Eigen/src/SVD/ |
H A D | UpperBidiagonalization.h | 137 const UpperBidiagonalization<typename MatrixBase<Derived>::PlainObject> 140 return UpperBidiagonalization<PlainObject>(eval());
|
/external/eigen/Eigen/src/misc/ |
H A D | Solve.h | 27 Rhs::PlainObject::Options,
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
H A D | MatrixFunction.h | 513 typedef typename Derived::PlainObject PlainObject; typedef 514 typedef internal::traits<PlainObject> Traits; 517 static const int Options = PlainObject::Options; 523 const PlainObject Aevaluated = m_A.eval(); 524 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic); 542 typedef typename Derived::PlainObject ReturnType;
|
H A D | MatrixLogarithm.h | 441 typedef typename Derived::PlainObject PlainObject; typedef 442 typedef internal::traits<PlainObject> Traits; 445 static const int Options = PlainObject::Options; 451 const PlainObject Aevaluated = m_A.eval(); 452 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic); 469 typedef typename Derived::PlainObject ReturnType;
|
H A D | MatrixPower.h | 458 typedef typename Derived::PlainObject PlainObject; typedef in class:Eigen::MatrixPowerReturnValue 479 { MatrixPower<PlainObject>(m_A.eval()).compute(res, m_p); } 494 { typedef typename MatrixPowerType::PlainObject ReturnType; }; 498 { typedef typename Derived::PlainObject ReturnType; };
|
H A D | MatrixExponential.h | 420 const typename Derived::PlainObject srcEvaluated = m_src.eval(); 421 MatrixExponential<typename Derived::PlainObject> me(srcEvaluated); 438 typedef typename Derived::PlainObject ReturnType;
|
/external/eigen/Eigen/src/QR/ |
H A D | HouseholderQR.h | 329 typename Rhs::PlainObject c(rhs()); 380 const HouseholderQR<typename MatrixBase<Derived>::PlainObject> 383 return HouseholderQR<PlainObject>(eval());
|
H A D | ColPivHouseholderQR.h | 536 typename Rhs::PlainObject c(rhs()); 572 const ColPivHouseholderQR<typename MatrixBase<Derived>::PlainObject> 575 return ColPivHouseholderQR<PlainObject>(eval());
|
/external/eigen/Eigen/src/LU/ |
H A D | PartialPivLU.h | 484 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject> 487 return PartialPivLU<PlainObject>(eval()); 500 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject> 503 return PartialPivLU<PlainObject>(eval());
|
/external/eigen/Eigen/src/Core/products/ |
H A D | CoeffBasedProduct.h | 122 typedef typename Base::PlainObject PlainObject; typedef in class:Eigen::CoeffBasedProduct 195 EIGEN_STRONG_INLINE operator const PlainObject& () const 218 mutable PlainObject m_result; 225 template<typename Lhs, typename Rhs, int N, typename PlainObject> 226 struct nested<CoeffBasedProduct<Lhs,Rhs,EvalBeforeNestingBit|EvalBeforeAssigningBit>, N, PlainObject> 228 typedef PlainObject const& type;
|