Exemple #1
0
 /// <summary>
 /// Computes the atan of a vector pointwise
 /// </summary>
 /// <param name="x">The input vector</param>
 /// <returns></returns>
 public static Vector <T> Atan(Vector <T> x)
 {
     return(x.PointwiseAtan());
 }