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