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