

   MMiisscceellllaanneeoouuss MMaatthheemmaattiiccaall FFuunnccttiioonnss

        abs(x)
        sqrt(x)

   DDeessccrriippttiioonn::

        These functions compute miscellaneous mathematical
        functions.  The naming follows the standard for com-
        puter languages such as C or Fortran.

   SSeeee AAllssoo::

        `Arithmetic' for simple and `Special' for special math-
        ematical functions.

   EExxaammpplleess::

        xx <- -9:9
        plot(xx, sqrt(abs(xx)),  col = "red")
        lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")

