/// <summary> /// Computes the cosh of a matrix pointwise /// </summary> /// <param name="x">The input matrix</param> /// <returns></returns> public static Matrix <T> Cosh(Matrix <T> x) { return(x.PointwiseCosh()); }