Hi,
I need to convert this piece of Matlab code
[ps, orig_path] = feval(str2func(test), out_path);
where 'test' is the name of a function and 'out_path' it unique input
argument. I have read and re-read the eval function and for once it's clear
for me how it works (sorry, I find this sentence highly cryptic "Evaluate
an expression in the given module and return the result" ) but worst, I
don't see anywhere how it could call a function with input arguments.
How can I achieve the same result in Julia?
Thanks.