HomeSort by relevance Sort by last modified time
    Searched refs:AdjointReturnType (Results 1 - 9 of 9) sorted by null

  /external/eigen/Eigen/src/Core/
SolverBase.h 99 >::type AdjointReturnType;
109 inline AdjointReturnType adjoint() const
111 return AdjointReturnType(derived().transpose());
SelfAdjointView.h 182 TriangularView<typename MatrixType::AdjointReturnType,TriMode> >::type
186 typename internal::conditional<(TriMode&(Upper|Lower))==(UpLo&(Upper|Lower)), MatrixType&, typename MatrixType::AdjointReturnType>::type tmp2(tmp1);
189 TriangularView<typename MatrixType::AdjointReturnType,TriMode> >::type(tmp2);
198 typedef SelfAdjointView<const typename MatrixType::AdjointReturnType,TransposeMode> AdjointReturnType;
201 inline const AdjointReturnType adjoint() const
202 { return AdjointReturnType(m_matrix.adjoint()); }
Transpose.h 209 inline const typename MatrixBase<Derived>::AdjointReturnType
212 return AdjointReturnType(this->transpose());
TriangularMatrix.h 245 typedef TriangularView<const typename MatrixType::AdjointReturnType,TransposeMode> AdjointReturnType;
248 inline const AdjointReturnType adjoint() const
249 { return AdjointReturnType(m_matrix.adjoint()); }
    [all...]
MatrixBase.h 112 >::type AdjointReturnType;
211 EIGEN_DEVICE_FUNC const AdjointReturnType adjoint() const;
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 109 >::type AdjointReturnType;
351 const AdjointReturnType adjoint() const { return AdjointReturnType(transpose()); }
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 471 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
478 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL;
LLT.h 393 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
402 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower> MatrixL;
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 281 typedef TriangularView<const typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU;
295 typedef TriangularView<const typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU;

Completed in 186 milliseconds