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

1 2

  /external/eigen/Eigen/src/Core/
SelfCwiseBinaryOp.h 20 typedef typename Derived::PlainObject PlainObject;
21 internal::call_assignment(this->derived(), PlainObject::Constant(rows(),cols(),other), internal::mul_assign_op<Scalar,Scalar>());
28 typedef typename Derived::PlainObject PlainObject;
29 internal::call_assignment(this->derived(), PlainObject::Constant(rows(),cols(),other), internal::add_assign_op<Scalar,Scalar>());
36 typedef typename Derived::PlainObject PlainObject;
37 internal::call_assignment(this->derived(), PlainObject::Constant(rows(),cols(),other), internal::sub_assign_op<Scalar,Scalar>());
44 typedef typename Derived::PlainObject PlainObject
    [all...]
Array.h 54 typedef typename Base::PlainObject PlainObject;
ArrayBase.h 83 typedef typename Base::PlainObject PlainObject;
86 typedef CwiseNullaryOp<internal::scalar_constant_op<Scalar>,PlainObject> ConstantReturnType;
Inverse.h 21 : traits<typename XprType::PlainObject>
23 typedef typename XprType::PlainObject PlainObject;
24 typedef traits<PlainObject> BaseTraits;
47 typedef typename XprType::PlainObject PlainObject;
95 : public evaluator<typename Inverse<ArgType>::PlainObject>
98 typedef typename InverseType::PlainObject PlainObject;
99 typedef evaluator<PlainObject> Base
    [all...]
ReturnByValue.h 38 template<typename Derived,int n,typename PlainObject>
39 struct nested_eval<ReturnByValue<Derived>, n, PlainObject>
99 typedef typename internal::traits<Derived>::ReturnType PlainObject;
100 typedef evaluator<PlainObject> Base;
110 PlainObject m_result;
Solve.h 40 RhsType::PlainObject::Options,
42 RhsType::MaxColsAtCompileTime>::type PlainObject;
47 : traits<typename solve_traits<Decomposition,RhsType,typename internal::traits<RhsType>::StorageKind>::PlainObject>
49 typedef typename solve_traits<Decomposition,RhsType,typename internal::traits<RhsType>::StorageKind>::PlainObject PlainObject;
51 typedef traits<PlainObject> BaseTraits;
65 typedef typename internal::traits<Solve>::PlainObject PlainObject;
115 : public evaluator<typename Solve<Decomposition,RhsType>::PlainObject>
118 typedef typename SolveType::PlainObject PlainObject
    [all...]
Matrix.h 192 typedef typename Base::PlainObject PlainObject;
DenseBase.h 179 * \sa PlainObject */
189 * \sa PlainObject */
202 * that the return type of eval() is either PlainObject or const PlainObject&.
205 PlainMatrix, PlainArray>::type PlainObject;
262 typedef CwiseNullaryOp<internal::scalar_constant_op<Scalar>,PlainObject> ConstantReturnType;
264 typedef CwiseNullaryOp<internal::linspaced_op<Scalar,PacketScalar>,PlainObject> SequentialLinSpacedReturnType;
266 typedef CwiseNullaryOp<internal::linspaced_op<Scalar,PacketScalar>,PlainObject> RandomAccessLinSpacedReturnType;
345 static const CwiseNullaryOp<CustomNullaryOp, PlainObject>
348 static const CwiseNullaryOp<CustomNullaryOp, PlainObject>
    [all...]
DiagonalMatrix.h 38 typedef DiagonalMatrix<Scalar,DiagonalVectorType::SizeAtCompileTime,DiagonalVectorType::MaxSizeAtCompileTime> PlainObject;
MatrixBase.h 103 typedef typename Base::PlainObject PlainObject;
107 typedef CwiseNullaryOp<internal::scalar_constant_op<Scalar>,PlainObject> ConstantReturnType;
116 typedef CwiseNullaryOp<internal::scalar_identity_op<Scalar>,PlainObject> IdentityReturnType;
206 EIGEN_DEVICE_FUNC const PlainObject normalized() const;
207 EIGEN_DEVICE_FUNC const PlainObject stableNormalized() const;
333 inline const FullPivLU<PlainObject> fullPivLu() const;
334 inline const PartialPivLU<PlainObject> partialPivLu() const;
336 inline const PartialPivLU<PlainObject> lu() const;
357 inline const LLT<PlainObject> llt() const
    [all...]
PermutationMatrix.h 66 typedef PlainPermutationType PlainObject;
SelfAdjointView.h 38 typedef typename MatrixType::PlainObject FullMatrixType;
70 typedef typename MatrixType::PlainObject PlainObject;
235 const LLT<PlainObject, UpLo> llt() const;
236 const LDLT<PlainObject, UpLo> ldlt() const;
  /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/SparseCore/
SparseProduct.h 140 : public evaluator<typename Product<Lhs, Rhs, DefaultProduct>::PlainObject>
143 typedef typename XprType::PlainObject PlainObject;
144 typedef evaluator<PlainObject> Base;
157 typename remove_all<RhsNested>::type, PlainObject>::run(lhsNested,rhsNested,m_result,
162 PlainObject m_result;
SparsePermutation.h 93 // whereas it should be correctly handled by traits<Product<> >::PlainObject
100 typedef typename permutation_matrix_product<Rhs,OnTheLeft,false,SparseShape>::ReturnType PlainObject;
101 typedef evaluator<PlainObject> Base;
115 PlainObject m_result;
123 typedef typename permutation_matrix_product<Lhs,OnTheRight,false,SparseShape>::ReturnType PlainObject;
124 typedef evaluator<PlainObject> Base;
138 PlainObject m_result;
SparseUtil.h 128 typedef typename sparse_eval<RhsType, RhsType::RowsAtCompileTime, RhsType::ColsAtCompileTime,traits<RhsType>::Flags>::type PlainObject;
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;
  /external/eigen/Eigen/src/IterativeLinearSolvers/
SolveWithGuess.h 45 typedef typename internal::traits<SolveWithGuess>::PlainObject PlainObject;
75 : public evaluator<typename SolveWithGuess<Decomposition,RhsType,GuessType>::PlainObject>
78 typedef typename SolveType::PlainObject PlainObject;
79 typedef evaluator<PlainObject> Base;
90 PlainObject m_result;
  /external/eigen/Eigen/src/QR/
CompleteOrthogonalDecomposition.h 72 typedef typename MatrixType::PlainObject PlainObject;
505 typename RhsType::PlainObject c(rhs);
555 const CompleteOrthogonalDecomposition<typename MatrixBase<Derived>::PlainObject>
557 return CompleteOrthogonalDecomposition<PlainObject>(eval());
ColPivHouseholderQR.h 69 typedef typename MatrixType::PlainObject PlainObject;
597 typename RhsType::PlainObject c(rhs);
645 const ColPivHouseholderQR<typename MatrixBase<Derived>::PlainObject>
648 return ColPivHouseholderQR<PlainObject>(eval());
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());
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 601 typedef typename Derived::PlainObject PlainObject;
622 { MatrixPower<PlainObject>(m_A.eval()).compute(res, m_p); }
649 typedef typename Derived::PlainObject PlainObject;
687 { typedef typename MatrixPowerType::PlainObject ReturnType; };
691 { typedef typename Derived::PlainObject ReturnType; };
695 { typedef typename Derived::PlainObject ReturnType; };
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 248 MatrixTypeCleaned::PlainObject::Options,
289 MatrixType::PlainObject::Options,
333 : evaluator<typename Homogeneous<ArgType,Direction>::PlainObject >
336 typedef typename XprType::PlainObject PlainObject;
337 typedef evaluator<PlainObject> Base;
346 PlainObject m_temp;
  /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...]
PartialPivLU.h 90 typedef typename MatrixType::PlainObject PlainObject;
588 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
591 return PartialPivLU<PlainObject>(eval());
603 inline const PartialPivLU<typename MatrixBase<Derived>::PlainObject>
606 return PartialPivLU<PlainObject>(eval());

Completed in 447 milliseconds

1 2