root/gliderproc/trunk/MATLAB/util/whichnedit.m
Revision 495 (checked in by cbc, 12 years ago) |
---|
Line | |
---|---|
1 | function [status,result]=whichnedit(funcname); |
2 | % |
3 | % WHICHNEDIT - shortcut function to which a function |
4 | % then nedit it |
5 | % |
6 | % whichnedit(funcname); % funcname is a string |
7 | % |
8 | |
9 | file=which(funcname); |
10 | [status,result]=system(['nedit ',file,'&']); |
Note: See TracBrowser for help on using the browser.