https://github.com/cran/pracma
Raw File
Tip revision: c79a04b5074656b36e591191eb8137b70a349932 authored by Hans W. Borchers on 30 June 2014, 00:00:00 UTC
version 1.7.0
Tip revision: c79a04b
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