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