Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:PlainObject

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;
92 PlainObject thisAsMatrix(*this);
93 return SelfAdjointEigenSolver<PlainObject>(thisAsMatrix, false).eigenvalues();
125 typename Derived::PlainObject m_eval(derived());