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