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

  /external/eigen/Eigen/src/plugins/
CommonCwiseUnaryOps.h 19 >::type ConjugateReturnType;
73 inline ConjugateReturnType
76 return ConjugateReturnType(derived());
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 63 typedef typename internal::remove_all<typename MatrixType::ConjugateReturnType>::type MatrixConjugateReturnType;
192 typedef SelfAdjointView<const MatrixConjugateReturnType,Mode> ConjugateReturnType;
195 inline const ConjugateReturnType conjugate() const
196 { return ConjugateReturnType(m_matrix.conjugate()); }
TriangularMatrix.h 199 typedef typename internal::remove_all<typename MatrixType::ConjugateReturnType>::type MatrixConjugateReturnType;
239 typedef TriangularView<const MatrixConjugateReturnType,Mode> ConjugateReturnType;
242 inline const ConjugateReturnType conjugate() const
243 { return ConjugateReturnType(m_matrix.conjugate()); }
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 135 typename internal::remove_all<typename VectorsType::ConjugateReturnType>::type,
138 typename internal::remove_all<typename CoeffsType::ConjugateReturnType>::type,
141 > ConjugateReturnType;
215 ConjugateReturnType conjugate() const
217 return ConjugateReturnType(m_vectors.conjugate(), m_coeffs.conjugate())
224 ConjugateReturnType adjoint() const
230 ConjugateReturnType inverse() const { return adjoint(); }

Completed in 288 milliseconds