https://github.com/cran/pracma
Raw File
Tip revision: 00dcc24912cb9162914b67ae18137cab456a0b21 authored by Hans W. Borchers on 06 September 2016, 16:40:55 UTC
version 1.9.5
Tip revision: 00dcc24
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