如何从GUI按钮回调中在编辑器中打开脚本?
我试过了:
function load_Callback(hObject, eventdata, handles)
uiopen(myfile.m)
但它不起作用!
干杯,
托比
答案 0 :(得分:1)
如果要在编辑器中打开file.m
,则需要使用edit
命令
edit file.m
答案 1 :(得分:1)
首先你需要使用函数open
然后你需要在参数中引用文件的名称,如:
open('myfile.m') %this will open the exact file 'myfile.m'
这将在编辑器中打开文件。
您可以使用uiopen
让用户选择该文件。
uiopen() %this will prompt the user to choose file
我建议你看一下:
http://www.mathworks.com/help/matlab/ref/open.html http://www.mathworks.com/help/matlab/ref/uiopen.html