HomeSort by relevance Sort by last modified time
    Searched defs:PlainObject (Results 1 - 16 of 16) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
MatrixBaseEigenvalues.h 25 typedef typename Derived::PlainObject PlainObject;
26 PlainObject m_eval(m);
27 return ComplexEigenSolver<PlainObject>(m_eval, false).eigenvalues();
37 typedef typename Derived::PlainObject PlainObject;
38 PlainObject m_eval(m);
39 return EigenSolver<PlainObject>(m_eval, false).eigenvalues();
91 typedef typename SelfAdjointView<MatrixType, UpLo>::PlainObject PlainObject;
    [all...]
  /external/eigen/Eigen/src/Core/
Array.h 51 typedef typename Base::PlainObject PlainObject;
ArrayBase.h 91 * PlainObject or const PlainObject&.
99 > PlainObject;
Matrix.h 141 typedef typename Base::PlainObject PlainObject;
ProductBase.h 88 typedef typename Base::PlainObject PlainObject;
117 operator const PlainObject& () const
174 mutable PlainObject m_result;
180 template<typename Lhs, typename Rhs, int Mode, int N, typename PlainObject>
181 struct nested<GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject>
183 typedef PlainObject const& type;
241 typedef typename Base::PlainObject PlainObject;
SelfAdjointView.h 38 typedef typename MatrixType::PlainObject DenseMatrixType;
70 typedef typename MatrixType::PlainObject PlainObject;
152 const LLT<PlainObject, UpLo> llt() const;
153 const LDLT<PlainObject, UpLo> ldlt() const;
SelfCwiseBinaryOp.h 174 typedef typename Derived::PlainObject PlainObject;
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;
187 SelfCwiseBinaryOp<BinOp, Derived, typename PlainObject::ConstantReturnType> tmp(derived());
191 tmp = PlainObject::Constant(rows(),cols(), actual_other);
DiagonalMatrix.h 38 typedef DiagonalMatrix<Scalar,DiagonalVectorType::SizeAtCompileTime,DiagonalVectorType::MaxSizeAtCompileTime> PlainObject;
MatrixBase.h 107 * that the return type of eval() is either PlainObject or const PlainObject&.
115 > PlainObject;
210 const PlainObject normalized() const;
327 const FullPivLU<PlainObject> fullPivLu() const;
328 const PartialPivLU<PlainObject> partialPivLu() const;
331 const LU<PlainObject> lu() const;
335 const LU<PlainObject> eigen2_lu() const;
339 const PartialPivLU<PlainObject> lu() const;
367 const LLT<PlainObject> llt() const
    [all...]
TriangularMatrix.h 144 typedef typename MatrixType::PlainObject DenseMatrixType;
168 typedef DenseMatrixType PlainObject;
304 typedef typename OtherDerived::PlainObject::DenseType OtherPlainObject;
306 typedef typename ProdRetType::PlainObject type;
312 typename OtherDerived::PlainObject::DenseType rhsPlainObject;
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 121 typedef typename Base::PlainObject PlainObject;
194 EIGEN_STRONG_INLINE operator const PlainObject& () const
217 mutable PlainObject m_result;
224 template<typename Lhs, typename Rhs, int N, typename PlainObject>
225 struct nested<CoeffBasedProduct<Lhs,Rhs,EvalBeforeNestingBit|EvalBeforeAssigningBit>, N, PlainObject>
227 typedef PlainObject const& type;
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 108 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, Index> PlainObject;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 441 typedef typename Derived::PlainObject PlainObject;
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;
MatrixPower.h 459 typedef typename Derived::PlainObject PlainObject;
480 { MatrixPower<PlainObject>(m_A.eval()).compute(res, m_p); }
495 { typedef typename MatrixPowerType::PlainObject ReturnType; };
499 { typedef typename Derived::PlainObject ReturnType; };
MatrixFunction.h 513 typedef typename Derived::PlainObject PlainObject;
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;
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 215 typedef Quaternion<_Scalar,_Options> PlainObject;

Completed in 352 milliseconds