Learn R Programming

RcppOctave (version 0.9.5)

ostart: Low-level Function Interfacing with Octave

Description

ostart Initialize an Octave session.

oend clears and terminates the current Octave session.

overbose toggles the verbosity of RcppOctave calls: messages tracks any function call, or conversion of objects between R and Octave (e.g. arguments and results).

oconfig retrieves Octave configuration variables.

omodules add the Octave modules shipped with RcppOctave to Octave path.

Usage

ostart(verbose = FALSE)

oend()

overbose(value)

oconfig(varname, verbose = FALSE, warn = TRUE)

omodules(verbose = getOption("verbose"))

Arguments

verbose
logical value used as the inital verbosity status.
value
logical value to toggle verbosity
varname
Name (as a character string) of the Octave configuration variable to retrieve. It is used in following system call octave-config -p . This function is vectorised and returns a character vector of the same length as its argume
warn
logical that indicates if a warning should be thrown when a variable is returned empty, which generally means that x is not a valid config variable name.

See Also

OctaveConfig