Ejemplo n.º 1
0
 /// <summary>
 /// Computes the atan of a matrix pointwise
 /// </summary>
 /// <param name="x">The input matrix</param>
 /// <returns></returns>
 public static Matrix <T> Atan(Matrix <T> x)
 {
     return(x.PointwiseAtan());
 }