o_whos: Detailed Listing of Octave Variables

Description Usage Arguments Octave Documentation for whos See Also Examples

View source: R/eval.R

Description

The function o_whos returns a detailed description of the variables defined in the current Octave session.

Usage

1
o_whos(..., options, rm.ans = FALSE)

Arguments

...

filtering patterns or extra arguments passed to o_who and o_whos. Only names matching any of the patterns are returned.

options

options passed to Octave function who. See section Octave Documentation.

rm.ans

a logical that indicates if the automatic Octave variable ans should be included in the result (FALSE) or removed (TRUE).

Octave Documentation for whos

\Sexpr[results=rd,stage=render]{if( .Platform$OS.type != 'windows' || .Platform$r_arch != 'x64' ) RcppOctave::o_help(whos, format='rd')}

[Generated from Octave-\Sexpr{RcppOctave::o_version()} on \Sexpr{Sys.time()}]

See Also

Other listoct: o_ls; o_who

Examples

1
2
3
4
5
6
.O$a <- 1
.O$b <- 10
o_whos()

o_eval("sqrt(2)")
o_whos()

RcppOctave documentation built on May 29, 2017, 11:31 a.m.