HomeSort by relevance Sort by last modified time
    Searched refs:PlainObject (Results 26 - 50 of 70) sorted by null

12 3

  /external/eigen/Eigen/src/LU/
FullPivLU.h 76 typedef typename MatrixType::PlainObject PlainObject;
769 typename RhsType::PlainObject c(rhs.rows(), rhs.cols());
819 typename RhsType::PlainObject c(rhs.rows(), rhs.cols());
883 inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
886 return FullPivLU<PlainObject>(eval());
    [all...]
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 29 typedef typename MatrixType::PlainObject ReturnType;
80 typedef typename MatrixType::PlainObject PlainObject;
555 typename RhsType::PlainObject c(rhs);
668 const FullPivHouseholderQR<typename MatrixBase<Derived>::PlainObject>
671 return FullPivHouseholderQR<PlainObject>(eval());
HouseholderQR.h 355 typename RhsType::PlainObject c(rhs);
401 const HouseholderQR<typename MatrixBase<Derived>::PlainObject>
404 return HouseholderQR<PlainObject>(eval());
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 32 inline typename MatrixBase<Derived>::PlainObject
81 EIGEN_DEVICE_FUNC inline typename MatrixBase<Derived>::PlainObject
225 EIGEN_DEVICE_FUNC typename MatrixBase<Derived>::PlainObject
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 283 typedef typename T::PlainObject type;
317 // typedef typename T::PlainObject type;
435 * \tparam PlainObject the type of the temporary if needed.
437 template<typename T, int n, typename PlainObject = typename plain_object_eval<T>::type> struct nested_eval
452 typedef typename conditional<Evaluate, PlainObject, typename ref_selector<T>::type>::type type;
582 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> MatrixRowType;
584 ExpressionType::PlainObject::Options | RowMajor, 1, ExpressionType::MaxColsAtCompileTime> ArrayRowType;
597 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> MatrixColType;
599 ExpressionType::PlainObject::Options & ~RowMajor, ExpressionType::MaxRowsAtCompileTime, 1> ArrayColType;
614 typedef Matrix<Scalar, diag_size, 1, ExpressionType::PlainObject::Options & ~RowMajor, max_diag_size, 1> MatrixDiagType
    [all...]
BlasUtil.h 285 typename _ExtractType::PlainObject
362 typename ExtractType::PlainObject
  /external/eigen/Eigen/src/Core/
Array.h 54 typedef typename Base::PlainObject PlainObject;
Dot.h 120 inline const typename MatrixBase<Derived>::PlainObject
163 inline const typename MatrixBase<Derived>::PlainObject
Matrix.h 192 typedef typename Base::PlainObject PlainObject;
ProductEvaluators.h 97 : public evaluator<typename Product<Lhs, Rhs, Options>::PlainObject>
100 typedef typename XprType::PlainObject PlainObject;
101 typedef evaluator<PlainObject> Base;
128 PlainObject m_result;
    [all...]
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 650 inline const LDLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
653 return LDLT<PlainObject,UpLo>(m_matrix);
661 inline const LDLT<typename MatrixBase<Derived>::PlainObject>
664 return LDLT<PlainObject>(derived());
LLT.h 515 inline const LLT<typename MatrixBase<Derived>::PlainObject>
518 return LLT<PlainObject>(derived());
526 inline const LLT<typename SelfAdjointView<MatrixType, UpLo>::PlainObject, UpLo>
529 return LLT<PlainObject,UpLo>(m_matrix);
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 82 // typedef typename CwiseUnaryOp<scalar_multiple2_op<T1, typename T2::Scalar>, T2>::PlainObject ReturnType;
293 typedef typename XprType::PlainObject PlainObject;
308 typedef typename XprType::PlainObject PlainObject;
SparseUtil.h 128 typedef typename sparse_eval<RhsType, RhsType::RowsAtCompileTime, RhsType::ColsAtCompileTime,traits<RhsType>::Flags>::type PlainObject;
  /external/eigen/test/
nesting_ops.cpp 19 typename XprType::PlainObject res(mat.rows(), mat.cols());
  /external/eigen/Eigen/src/Eigenvalues/
Tridiagonalization.h 21 : public traits<typename MatrixType::PlainObject>
23 typedef typename MatrixType::PlainObject ReturnType; // FIXME shall it be a BandMatrix?
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 31 typedef typename Derived::PlainObject ReturnType;
156 typename Dest::PlainObject y, y2;
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 37 typedef typename Derived::PlainObject ReturnType;
200 typename Dest::PlainObject y, b;
715 typename DstXprType::PlainObject idMat(src.m_qr.rows(), src.m_qr.rows());
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 403 const UpperBidiagonalization<typename MatrixBase<Derived>::PlainObject>
406 return UpperBidiagonalization<PlainObject>(eval());
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 342 internal::matrix_function_compute<typename DerivedEvalTypeClean::PlainObject>::run(m_A, atomic, result);
356 typedef typename Derived::PlainObject ReturnType;
  /external/eigen/Eigen/src/Core/products/
SelfadjointProduct.h 73 Map<typename _ActualOtherType::PlainObject>(actualOtherPtr, actualOther.size()) = actualOther;
GeneralMatrixMatrixTriangular.h 232 if(!UseLhsDirectly) Map<typename _ActualLhs::PlainObject>(actualLhsPtr, actualLhs.size()) = actualLhs;
237 if(!UseRhsDirectly) Map<typename _ActualRhs::PlainObject>(actualRhsPtr, actualRhs.size()) = actualRhs;
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 346 typename DestDerived::PlainObject tmp(cols(),rhsCols);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorTraits.h 170 template<typename T, int n=1, typename PlainObject = void> struct nested
  /external/eigen/Eigen/src/LU/arch/
Inverse_SSE.h 42 typedef typename conditional<(MatrixType::Flags&LinearAccessBit),MatrixType const &,typename MatrixType::PlainObject>::type ActualMatrixType;
174 typedef typename conditional<(MatrixType::Flags&LinearAccessBit),MatrixType const &,typename MatrixType::PlainObject>::type ActualMatrixType;

Completed in 572 milliseconds

12 3