| 106 | */ |
| 107 | template<typename Derived> |
| 108 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE typename NumTraits<typename internal::traits<Derived>::Scalar>::Real MatrixBase<Derived>::norm() const |
| 109 | { |
| 110 | return numext::sqrt(squaredNorm()); |
| 111 | } |
| 112 | |
| 113 | /** \returns an expression of the quotient of \c *this by its own norm. |
| 114 | * |
no test coverage detected