namespace std
{
/**
- * Computes the sine of a vectorized
- * data field. The result is return as
- * vectorized array in the form
- * <tt>{sin(x[0]), sin(x[1]), ...,
+ * Computes the sine of a vectorized data field. The result is return as
+ * vectorized array in the form <tt>{sin(x[0]), sin(x[1]), ...,
* sin(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the tangent of a vectorized
- * data field. The result is return as
- * vectorized array in the form
- * <tt>{tan(x[0]), tan(x[1]), ...,
+ * Computes the tangent of a vectorized data field. The result is return as
+ * vectorized array in the form <tt>{tan(x[0]), tan(x[1]), ...,
* tan(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the cosine of a vectorized
- * data field. The result is return as
- * vectorized array in the form
- * <tt>{cos(x[0]), cos(x[1]), ...,
+ * Computes the cosine of a vectorized data field. The result is return as
+ * vectorized array in the form <tt>{cos(x[0]), cos(x[1]), ...,
* cos(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the exponential of a vectorized
- * data field. The result is return as
- * vectorized array in the form
- * <tt>{exp(x[0]), exp(x[1]), ...,
+ * Computes the exponential of a vectorized data field. The result is return
+ * as vectorized array in the form <tt>{exp(x[0]), exp(x[1]), ...,
* exp(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the natural logarithm of a
- * vectorized data field. The result is return
- * as vectorized array in the form
- * <tt>{log(x[0]), log(x[1]), ...,
+ * Computes the natural logarithm of a vectorized data field. The result is
+ * return as vectorized array in the form <tt>{log(x[0]), log(x[1]), ...,
* log(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the square root of a vectorized
- * data field. The result is return as
- * vectorized array in the form
- * <tt>{sqrt(x[0]), sqrt(x[1]), ...,
+ * Computes the square root of a vectorized data field. The result is return
+ * as vectorized array in the form <tt>{sqrt(x[0]), sqrt(x[1]), ...,
* sqrt(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
/**
- * Computes the absolute value (modulus) of a
- * vectorized data field. The result is return
- * as vectorized array in the form
- * <tt>{abs(x[0]), abs(x[1]), ...,
- * abs(x[n_array_elements-1])}</tt>.
+ * Computes the absolute value (modulus) of a vectorized data field. The
+ * result is return as vectorized array in the form <tt>{abs(x[0]),
+ * abs(x[1]), ..., abs(x[n_array_elements-1])}</tt>.
*
* @relates VectorizedArray
*/
/**
- * Computes the componentwise maximum of two
- * vectorized data fields. The result is
- * return as vectorized array in the form
- * <tt>{max(x[0],y[0]), max(x[1],y[1]),
- * ...}</tt>.
+ * Computes the componentwise maximum of two vectorized data fields. The
+ * result is return as vectorized array in the form <tt>{max(x[0],y[0]),
+ * max(x[1],y[1]), ...}</tt>.
*
* @relates VectorizedArray
*/
/**
- * Computes the componentwise minimum of two
- * vectorized data fields. The result is
- * return as vectorized array in the form
- * <tt>{min(x[0],y[0]), min(x[1],y[1]),
- * ...}</tt>.
+ * Computes the componentwise minimum of two vectorized data fields. The
+ * result is return as vectorized array in the form <tt>{min(x[0],y[0]),
+ * min(x[1],y[1]), ...}</tt>.
*
* @relates VectorizedArray
*/