Home | History | Annotate | Download | only in Eigenvalues

Lines Matching refs:Matrix

42 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >& \
43 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
45 typedef Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> MatrixType; \
49 eigen_assert(matrix.cols() == matrix.rows()); \
52 if(matrix.cols() == 1) \
54 m_matT = matrix.derived().template cast<ComplexScalar>(); \
61 lapack_int n = internal::convert_index<lapack_int>(matrix.cols()), sdim, info; \
68 m_matT = matrix; \
70 Matrix<EIGTYPE, Dynamic, Dynamic> w; \