Home | History | Annotate | Download | only in Eigenvalues

Lines Matching full:matrix

44 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >& \
45 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW>& matrix, bool computeU) \
47 typedef Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> MatrixType; \
52 assert(matrix.cols() == matrix.rows()); \
55 if(matrix.cols() == 1) \
57 m_matT = matrix.cast<ComplexScalar>(); \
64 lapack_int n = matrix.cols(), sdim, info; \
65 lapack_int lda = matrix.outerStride(); \
72 m_matT = matrix; \
73 Matrix<EIGTYPE, Dynamic, Dynamic> w; \