octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #47807] run behaves differently from Matlab on


From: John W. Eaton
Subject: [Octave-bug-tracker] [bug #47807] run behaves differently from Matlab on function m-files
Date: Wed, 04 May 2016 18:34:28 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:44.0) Gecko/20100101 Firefox/44.0 Iceweasel/44.0

Follow-up Comment #6, bug #47807 (project octave):

So should run be just as brain-dead simple as


function run (file_name)
curr_dir = pwd ();
onCleanup (@() chdir (currdir));
## Some code to check validity of file_name and determine directory part (if
any) and function name...
chdir (dir_part_of_given_file_name);
eval (function_name_derived_from_file_name);
endfunction


?  Does the evaluation of the function need to happen in the parent (so
instead of eval, use evalin ("caller", ...))?


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?47807>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]