Introduction - If you have any usage issues, please Google them yourself
It creates an m-file for a matlab function and populate with a header template describing the purpose of the function, the input and output parameters, and other relevant information.
In addition, it inserts information related to the author of the file: username, display name, computer name, windows version, and the time stamp.
The command to create a MATLAB function:
new myfun
It is also possible to append function code at the function m-file creation time as follows:
new myfun disp( Hello World! )