https://github.com/cran/pracma
Raw File
Tip revision: 708a2ad382a163d1eef5af0665e3ae2aad200ced authored by HwB on 21 March 2013, 00:00:00 UTC
version 1.4.5
Tip revision: 708a2ad
clear.Rd
\name{clear, who(s), ver}
\alias{clear}
\alias{ver}
\alias{who}
\alias{whos}
\title{
Clear function (Matlab style)
}
\description{
  List or remove items from workspace, or display system information.
}
\usage{
clear(lst)
ver()

who()
whos()
}
\arguments{
  \item{lst}{Character vector of names of variables in the global environment.}
}
\details{
  Remove these or all items from the workspace, i.e. the global environment,
  and freeing up system memory.

  \code{who()}  lists all items on the workspace.\cr
  \code{whos()} lists all items and their class and size.

  \code{ver()} displays version and license information for R and all the
  loaded packages.
}
\value{
  Invisibly NULL.
}
\seealso{
  \code{\link{ls}}, \code{\link{rm}}, \code{\link{sessionInfo}}
}
\examples{
# clear()  # DON'T
# who()
# whos()
# ver()
}
back to top