The function o_rm
is an alias to o_clear
.
o_clear(..., all = FALSE, options) o_rm(..., all = FALSE, options)
clear
. See section Octave Documentation. [Generated from
Octave-
# Assign other variables in Octave .O$a <- 10 .O$b <- 100 .O$ba <- 1000 o_who() o_get() identical(o_who(), c('a', 'b', 'ba'))
# Clear variable starting with 'b' o_clear('b*') o_who() identical(o_who(), 'a')