HomeSort by relevance Sort by last modified time
    Searched refs:PlainObject (Results 1 - 25 of 55) sorted by null

1 2 3

  /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/Eigen2Support/
QR.h 59 const QR<typename MatrixBase<Derived>::PlainObject>
62 return QR<PlainObject>(eval());
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());
TriangularSolver.h 27 typename ExpressionType::PlainObject
  /external/eigen/Eigen/src/Core/
ReturnByValue.h 42 template<typename Derived,int n,typename PlainObject>
43 struct nested<ReturnByValue<Derived>, n, PlainObject>
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());
188 tmp = PlainObject::Constant(rows(),cols(), NumTraits<Scalar>::IsInteger ? other : Scalar(1)/other);
MatrixBase.h 107 * that the return type of eval() is either PlainObject or const PlainObject&.
115 > PlainObject;
207 const PlainObject normalized() const;
324 const FullPivLU<PlainObject> fullPivLu() const;
325 const PartialPivLU<PlainObject> partialPivLu() const;
328 const LU<PlainObject> lu() const;
332 const LU<PlainObject> eigen2_lu() const;
336 const PartialPivLU<PlainObject> lu() const;
364 const LLT<PlainObject> llt() const
    [all...]
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;
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());
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;
Flagged.h 115 typename ExpressionType::PlainObject solveTriangular(const MatrixBase<OtherDerived>& other) const;
Array.h 51 typedef typename Base::PlainObject PlainObject;
Matrix.h 141 typedef typename Base::PlainObject PlainObject;
  /external/eigen/Eigen/src/plugins/
MatrixCwiseBinaryOps.h 86 return cwiseMin(Derived::PlainObject::Constant(rows(), cols(), other));
110 return cwiseMax(Derived::PlainObject::Constant(rows(), cols(), other));
ArrayCwiseBinaryOps.h 39 return (min)(Derived::PlainObject::Constant(rows(), cols(), other));
58 return (max)(Derived::PlainObject::Constant(rows(), cols(), other));
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 186 // typedef typename T::PlainObject type;
294 template<typename T, int n=1, typename PlainObject = typename eval<T>::type> struct nested
316 PlainObject,
394 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType;
396 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType;
409 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType;
411 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType;
426 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType;
427 typedef Array<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> ArrayDiagType;
  /external/eigen/Eigen/src/Householder/
Householder.h 120 Map<typename internal::plain_row_type<PlainObject>::type> tmp(workspace,cols());
157 Map<typename internal::plain_col_type<PlainObject>::type> tmp(workspace,rows());
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 137 const UpperBidiagonalization<typename MatrixBase<Derived>::PlainObject>
140 return UpperBidiagonalization<PlainObject>(eval());
  /external/eigen/Eigen/src/misc/
Solve.h 27 Rhs::PlainObject::Options,
  /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/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 512 typedef typename Derived::PlainObject PlainObject;
513 typedef internal::traits<PlainObject> Traits;
516 static const int Options = PlainObject::Options;
522 const PlainObject Aevaluated = m_A.eval();
523 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
541 typedef typename Derived::PlainObject ReturnType;
MatrixLogarithm.h 450 typedef typename Derived::PlainObject PlainObject;
451 typedef internal::traits<PlainObject> Traits;
454 static const int Options = PlainObject::Options;
460 const PlainObject Aevaluated = m_A.eval();
461 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
478 typedef typename Derived::PlainObject ReturnType;
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 292 typename Rhs::PlainObject c(rhs());
335 const HouseholderQR<typename MatrixBase<Derived>::PlainObject>
338 return HouseholderQR<PlainObject>(eval());
ColPivHouseholderQR.h 470 typename Rhs::PlainObject c(rhs());
484 typename Rhs::PlainObject d(c);
512 const ColPivHouseholderQR<typename MatrixBase<Derived>::PlainObject>
515 return ColPivHouseholderQR<PlainObject>(eval());
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 473 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
476 return PartialPivLU<PlainObject>(eval());
489 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
492 return PartialPivLU<PlainObject>(eval());

Completed in 190 milliseconds

1 2 3