Example #1
0
 /// <summary>
 /// Computes the absolute value of a vector pointwise
 /// </summary>
 /// <param name="x">The input vector</param>
 /// <returns></returns>
 public static Vector <T> Abs(Vector <T> x)
 {
     return(x.PointwiseAbs());
 }