[top][index]
search for:

ceiling -- ceiling function

Synopsis:

  • Usage: y = ceiling x
  • Input:
  • x
  • Output:
  • y: the largest integer greater than or equal to the number x
  • Code:

         -- ../../../Macaulay2/m2/integers.m2:82
         ceiling = x -> - floor(-x)

    [top][index]
    search for: