/// <summary> /// Computes the asin of a vector pointwise /// </summary> /// <param name="x">The input vector</param> /// <returns></returns> public static Vector <T> Asin(Vector <T> x) { return(x.PointwiseAsin()); }