real_type linfty_norm () const;
/**
- * Normalize vector by dividing
- * by the $l_2$-norm of the
- * vector. Return vector norm
- * before normalization.
+ * Normalize vector by dividing by the $l_2$-norm of the
+ * vector. Return the vector norm before normalization.
*/
real_type normalize () const;
/**
- * Return vector component with
- * the minimal magnitude.
+ * Return the value of the vector element with the largest negative value.
*/
real_type min () const;
/**
- * Return vector component with
- * the maximal magnitude.
+ * Return the value of the vector element with the largest positive value.
*/
real_type max () const;
-
/**
- * Replace every element in a
- * vector with its absolute
- * value.
+ * Replace every element in a vector with its absolute value.
*/
VectorBase &abs ();