-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patho_who.Rd
59 lines (48 loc) · 1.61 KB
/
o_who.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/eval.R
\name{o_who}
\alias{o_who}
\title{Listing Octave Variables}
\usage{
o_who(..., options, rm.ans = FALSE, unique = TRUE)
}
\arguments{
\item{...}{filtering patterns or extra arguments passed to \code{o_who}
and \code{o_whos}. Only names matching any of the patterns are returned.}
\item{options}{options passed to Octave function \code{who}.
See section \emph{Octave Documentation}.}
\item{rm.ans}{a logical that indicates if the automatic Octave variable \code{ans}
should be included in the result (\code{FALSE}) or removed (\code{TRUE}).}
\item{unique}{a logical that indicates whether unique names should be returned.
This argument is relevant in the case multiple patterns are specified in
\code{...}.}
}
\value{
None
}
\description{
Lists currently defined variables in Octave global context.
}
\section{Octave Documentation for \emph{who}}{
\Sexpr[results=rd,stage=render]{if( .Platform$OS.type != 'windows' || .Platform$r_arch != 'x64' ) RcppOctave::o_help(who, format='rd')}
\emph{[Generated from Octave-\Sexpr{RcppOctave::o_version()} on \Sexpr{Sys.time()}]}
}
\examples{
\dontshow{
options(R_CHECK_RUNNING_EXAMPLES_=TRUE) ## roxygen generated flag
}
\dontshow{ o_clear() }
o_who()
l <- as.list(setNames(1:10, letters[1:10]))
o_assign(l)
o_who()
\dontshow{ stopifnot( identical(o_who(), names(l)) ) }
prefnames <- paste('pref', letters[1:10], sep='')
o_assign( setNames(l, prefnames) )
o_who()
o_who('pref*')
\dontshow{ stopifnot( identical(o_who('pref*'), prefnames) ) }
}
\seealso{
Other listoct: \code{\link{o_ls}}, \code{\link{o_whos}}
}