set path for pde2path, version in pde2p (mainly here for m2html) if no argument given then . otherwise give full path note that version in pde2path has path([pde2home,'/pde2p'],path);
0001 function setpde2path(varargin) 0002 % set path for pde2path, version in pde2p (mainly here for m2html) 0003 % if no argument given then . 0004 % otherwise give full path 0005 % note that version in pde2path has path([pde2home,'/pde2p'],path); 0006 if(nargin==0); pde2home=pwd; path(pde2home,path); 0007 else path(varargin,path); 0008 end