| 139 | /** \returns an \link Eigen::MatrixBase Matrix \endlink expression of this array |
| 140 | * \sa MatrixBase::array() */ |
| 141 | EIGEN_DEVICE_FUNC MatrixWrapper<Derived> matrix() { return MatrixWrapper<Derived>(derived()); } |
| 142 | EIGEN_DEVICE_FUNC const MatrixWrapper<const Derived> matrix() const { |
| 143 | return MatrixWrapper<const Derived>(derived()); |
| 144 | } |
no outgoing calls
no test coverage detected