https://github.com/cran/pracma
Raw File
Tip revision: a7001ff1805634d18a10fa371b38dbe3e48f8c9e authored by HwB on 30 October 2011, 00:00:00 UTC
version 0.8.1
Tip revision: a7001ff
clear.Rd
\name{clear}
\alias{clear}
\title{
Clear function (Matlab style)
}
\description{
  Remove items from workspace.
}
\usage{
clear(lst)
}
\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.
}
\value{
  Invisibly NULL.
}
\seealso{
  \code{\link{rm}}
}
\examples{
# clear()  # DONT
}
back to top