\sa MatrixBase::coeff() * \warning the coordinates must fit into the referenced triangular part */
| 359 | * \warning the coordinates must fit into the referenced triangular part |
| 360 | */ |
| 361 | EIGEN_DEVICE_FUNC inline Scalar coeff(Index row, Index col) const { |
| 362 | Base::check_coordinates_internal(row, col); |
| 363 | return derived().nestedExpression().coeff(row, col); |
| 364 | } |
| 365 | |
| 366 | /** \sa MatrixBase::coeffRef() |
| 367 | * \warning the coordinates must fit into the referenced triangular part |
no test coverage detected