  int
  Builtin Function



      SSyynnooppssiiss
        Return an integer.

      SSyynnttaaxx
        int ( _A )

      DDeessccrriippttiioonn
        Int returns its argument after it has been "cast" to an integer.
        If the argument is a MATRIX then the int operation is performed
        on an element-by-element basis.

        int has the effect of truncating the input, for example:



          > int(1.1)
                     1
          > int(1.5)
                     1
          > int(1.999)
                     1





     SSeeee AAllssoo
        ceil, floor

































