| 315 | /** \returns an \link Eigen::ArrayBase Array \endlink expression of this matrix |
| 316 | * \sa ArrayBase::matrix() */ |
| 317 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ArrayWrapper<Derived> array() { return ArrayWrapper<Derived>(derived()); } |
| 318 | /** \returns a const \link Eigen::ArrayBase Array \endlink expression of this matrix |
| 319 | * \sa ArrayBase::matrix() */ |
| 320 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const ArrayWrapper<const Derived> array() const { return ArrayWrapper<const Derived>(derived()); } |
no outgoing calls