https://github.com/cran/pracma
Raw File
Tip revision: d5bfb0e3b7a3211ff2bbe2926e5ba31aa24e4df6 authored by HwB on 09 March 2012, 00:00:00 UTC
version 1.0.1
Tip revision: d5bfb0e
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