  mod
  Builtin Function



      SSyynnooppssiiss
        Floating point remainder

      SSyynnttaaxx
        mod( _A, _B )

      DDeessccrriippttiioonn
        The mod routine returns the floating point remainder of the
        division of _A by _B: zero if _B is zero or if _A/_B would overflow;
        otherwise the number F with the same sign as _A, such that _A = i_B
        + F for some integer i, and |f| < |B|.

        When the arguments to mod are two matrices, then an element by
        element mod is performed. Mod works on complex number also.

        mod(x,y) is equivalent to:

          n = int( x/y )



          mod(x,y) = x - y.*n


     mod is implemented via libm.a fmod function.




































