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