CUSTOM EIDORS STARTUP FILE this must be a script so that octave can source it
0001 % CUSTOM EIDORS STARTUP FILE 0002 % this must be a script so that octave can source it 0003 0004 0005 try 0006 eidors_startup 0007 catch 0008 [message id] = lasterr; 0009 if strcmp(id,'MATLAB:infoXmlValidationError') 0010 % An old version of MATLAB that we don't know how to write 0011 % info.xml for 0012 else 0013 error.message = message; 0014 error.identifier = id; 0015 rethrow(error); 0016 end 0017 end