https://github.com/cran/pracma
Raw File
Tip revision: d50cda4811eb3cdb8d2ce9e01ddb5e07d4a8c24f authored by HwB on 11 September 2013, 00:00:00 UTC
version 1.5.5
Tip revision: d50cda4
beep.Rd
\name{disp,beep}
\alias{disp}
\alias{beep}
\title{
Utility functions (Matlab style)
}
\description{
  Display text or array, or produce beep sound.
}
\usage{
disp(...)
beep()
}
\arguments{
  \item{...}{any R object that can be printed.}
}
\details{
  Display text or array, or produces the computer's default beep sound
  using `cat' with closing newline.
}
\value{
  beep() returns NULL invisibly, disp() displays with newline.
}
\examples{
disp("Some text, and numbers:", pi, exp(1))
# beep()
}
\keyword{ utilities }
back to top