Rev 838 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{Math}\title{Miscellaneous Mathematical Functions}\usage{abs(x)sqrt(x)}\alias{abs}\alias{sqrt}\description{These functions compute miscellaneous mathematical functions.The naming follows the standard for computer languagessuch as C or Fortran.}\seealso{\code{\link{Arithmetic}} for simple, \code{\link{log}} for logarithmic,\code{\link{sin}} for trigonometric, and \code{\link{Special}} forspecial mathematical functions.}\examples{xx <- -9:9plot(xx, sqrt(abs(xx)), col = "red")lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")}\keyword{math}