/// <summary> /// Computes the acos of a matrix pointwise /// </summary> /// <param name="x">The input matrix</param> /// <returns></returns> public static Matrix <T> Acos(Matrix <T> x) { return(x.PointwiseAcos()); }