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