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