Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching refs:cols

32     Index cols() const { return m_pow.cols(); }
74 { eigen_assert(T.rows() == T.cols()); }
100 res = (MatrixType::Identity(IminusT.rows(), IminusT.cols()) + res).template triangularView<Upper>()
103 res += MatrixType::Identity(IminusT.rows(), IminusT.cols());
116 for (Index i=1; i < m_A.cols(); ++i) {
155 for (Index i=0; i < m_A.cols(); ++i)
159 IminusT = MatrixType::Identity(m_A.rows(), m_A.cols()) - T;
298 { eigen_assert(A.rows() == A.cols()); }
321 Index cols() const { return m_A.cols(); }
341 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
343 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
347 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
349 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
358 switch (cols()) {
405 res = MatrixType::Identity(rows(), cols());
427 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
429 Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
435 template<int Rows, int Cols, int Options, int MaxRows, int MaxCols>
437 Matrix<RealScalar, Rows, Cols, Options, MaxRows, MaxCols>& res,
483 Index cols() const { return m_A.cols(); }