Lines Matching refs:row
62 Index row, Index col)
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
74 inline Scalar& coeffRef(Index row, Index col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
79 inline const Scalar coeff(Index row, Index col) const
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col));
90 * \return an expression of the (\a row, \a col)-minor of *this,
92 * row and column.
101 MatrixBase<Derived>::minor(Index row, Index col)
103 return Minor<Derived>(derived(), row, col);
110 MatrixBase<Derived>::minor(Index row, Index col) const
112 return Minor<Derived>(derived(), row, col);