uso run
, que le permitirá utilizar sus propias funciones en lugar de muebles empotrados sin añadirlos a la ruta.
Tomado de ayuda:
Ejecutar script que no está en camino de la corriente Sintaxis
plazo scriptname
Como dijo correctamente @Cheery, no puede ser utilizado para funciones que aceptan argumentos. Sin embargo, run.m
es un archivo modificable, por lo que hice una versión extendida, que puede aceptar argumentos. También se puede modificar para los argumentos de salida con bastante facilidad.
function runExtended(script,varargin)
cur = cd;
if isempty(script), return, end
if ispc, script(script=='/')='\'; end
[p,s,ext] = fileparts(script);
if ~isempty(p),
if exist(p,'dir'),
cd(p)
w = which(s);
if ~isempty(w),
% Check to make sure everything matches
[wp,ws,wext] = fileparts(w);
% Allow users to choose the .m file and run a .p
if strcmp(wext,'.p') && strcmp(ext,'.m'),
wext = '.m';
end
if ispc
cont = ~strcmpi(wp,pwd) | ~strcmpi(ws,s) | ...
(~isempty(ext) & ~strcmpi(wext,ext));
else
cont = ~isequal(wp,pwd) | ~isequal(ws,s) | ...
(~isempty(ext) & ~isequal(wext,ext));
end
if cont
if exist([s ext],'file')
cd(cur)
rehash;
error('MATLAB:run:CannotExecute','Can''t run %s.',[s ext]);
else
cd(cur)
rehash;
error('MATLAB:run:FileNotFound','Can''t find %s.',[s ext]);
end
end
try
feval(s,varargin{:});
% evalin('caller', [s ';']);
catch e
cd(cur);
rethrow(e);
end
else
cd(cur)
rehash;
error('MATLAB:run:FileNotFound','%s not found.',script)
end
cd(cur)
rehash;
else
error('MATLAB:run:FileNotFound','%s not found.',script)
end
else
if exist(script,'file')
evalin('caller',[script ';']);
else
error('MATLAB:run:FileNotFound','%s not found.',script)
end
end
end
¿Qué tan grande es la biblioteca, y cuánto trabajo vas a hacer con ella? ¿Con qué frecuencia desea llamar a sus funciones desde su código? ¿Hay código OO en la biblioteca? –