function f=open(file) % function f=open(file) % % It opens a matlab file in octave, similarly to the function % "open" in matlab. The files must be, of course, in Octave's path. % % Made by Ismael Nunez-Riboni % vTI. Hamburg % 2012.12.19 myED = 'nedit'; % You can change your editor here... % myED = 'gedit'; % file = which(file); system([myED,' ',file,' &'])