Home | History | Annotate | Download | only in Core

Lines Matching refs:row

83     inline Scalar coeff(Index row, Index col) const
85 Base::check_coordinates_internal(row, col);
86 return m_matrix.coeff(row, col);
92 inline Scalar& coeffRef(Index row, Index col)
94 Base::check_coordinates_internal(row, col);
95 return m_matrix.const_cast_derived().coeffRef(row, col);
209 row = (UnrollCount-1) % Derived1::RowsAtCompileTime
216 if(row == col)
217 dst.coeffRef(row, col) = real(src.coeff(row, col));
218 else if(row < col)
219 dst.coeffRef(col, row) = conj(dst.coeffRef(row, col) = src.coeff(row, col));
234 row = (UnrollCount-1) % Derived1::RowsAtCompileTime
241 if(row == col)
242 dst.coeffRef(row, col) = real(src.coeff(row, col));
243 else if(row > col)
244 dst.coeffRef(col, row) = conj(dst.coeffRef(row, col) = src.coeff(row, col));