MATLAB: How to save a GUI In Way that you can run it from another PCs

guiguide

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.

Best Answer

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