How to save a GUI In Way that you can run it from another PCs?
3 次查看(过去 30 天)
显示 更早的评论
How to save a GUI In Way that you can run it from another PCs? I have created a GUI as a project and I want to give to my master. but it can't be run by double clicking on it. it can be run just by opening GUIDE and opening the GUI from that box.
0 个评论
采纳的回答
Fangjun Jiang
2011-5-26
If your master (teacher, professor?) has Matlab, he should be able to run the .m file corresponding to your GUI application. You could also give him the .p file so he can double click the .p file in Matlab to run it.
help pcode
If your master does not have Matlab, you can compile your GUI application to an .exe file so it can be run on any computer. You need to have the Matlab Compiler Toolbox to do it.
help mcc
help deploytool
2 个评论
Fangjun Jiang
2011-5-26
pcode is provided with Matlab. Like Matt said, by default, you'll have mygui.fig and mygui.m files. Give both files to your master, he should be able to type 'mygui' in Matlab to run it. If he double clicks mygui.m, by default, it will open the mygui.m file for editing. If he's too lazy and wants to double click. You can run 'pcode mygui' then copy mygui.p and mygui.fig to him. He can double click mygui.p to run it.
更多回答(2 个)
Todd Flanagan
2011-5-26
You can redistribute MATLAB code and Guide guis using the MATLAB Compiler. This will give the other user something he can double click on and run if he does not have MATLAB installed on his computer.
1 个评论
Matt Fig
2011-5-26
I don't understand what you mean "it can only be run by opening GUIDE."
That is not correct, unless there is something wrong. You should be able to type the name of the GUI at the MATLAB command line and cause it to open. So if you give both of the M-file and FIG-file to your master, he should be able to run it by putting the files in his local directory then typing the name of the GUI.
2 个评论
Matt Fig
2011-5-26
Again, this is not correct unless the GUI is broken. If the name of your GUI M-file is mygui.m, then you should be able to run it from the command line by typing:
mygui
Assuming both files are in the current directory.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!