view matlab/padd.m @ 30:2c279c979bcd

Pulled out MATLAB initialisation into a separate script.
author samer
date Mon, 16 Feb 2015 22:03:22 +0000
parents 7d34f4b6df69
children
line wrap: on
line source
function padd(varargin)
% padd - Add directories to Matlab path.
%
% Directories are interpreted relative to the directory where this
% function is found.

Root=fileparts(which('padd'));
for i=1:nargin
	arg = varargin{i};
	disp(['adding path ' arg]);
	path(fullfile(Root,arg),path);
end;