o_load(from, ..., options)
load
. See section
Octave Documentation.[Generated from Octave-
# Loading from a MATLAB/Octave file #o_load
# Loading from an R list o_clear() l <- list(a=1, b=20, c=runif(10), d="this is a string", e=matrix(1:15, 3, 5)) o_load(l)
# Loading from an R environment o_load( list2env(l) )
# Partial loading o_clear() o_load(l, a, b, c) o_clear() o_load(list2env(l), d, e)