Blame | 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 and \code{\link{Special}} for specialmathematical functions.}\examples{xx <- -9:9plot(xx, sqrt(abs(xx)), col = "red")lines(spline(xx, sqrt(abs(xx)), n=101), col = "pink")}