\returns the size of the main diagonal, which is min(rows(),cols()). * \sa rows(), cols(), SizeAtCompileTime. */
| 98 | /** \returns the size of the main diagonal, which is min(rows(),cols()). |
| 99 | * \sa rows(), cols(), SizeAtCompileTime. */ |
| 100 | EIGEN_DEVICE_FUNC |
| 101 | inline Index diagonalSize() const { return (numext::mini)(rows(),cols()); } |
| 102 | |
| 103 | typedef typename Base::PlainObject PlainObject; |
| 104 |
no test coverage detected