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-
o_clear() # Assign a variable in Octave o_assign('a', 10) o_who() identical(o_who(), 'a') # Clear o_clear() o_who() identical(o_who(), character())
# 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')