Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I program a GUI in MATLAB? [closed]

I need to create a GUI in MATLAB for my project. I looked everywhere for examples of how to program a GUI but I couldn't find a lot. What are some good sites or techniques for GUI programming in MATLAB?

like image 279
suphero Avatar asked Jul 12 '09 10:07

suphero


People also ask

Can you run a MATLAB GUI without MATLAB?

In order to run any Matlab program on a machine that doesn't have Matlab installed you will need to instal the Matlab Compiler Runtime (MCR). This is a pre-requisite as it contains the Matlab core functionality that is required by your application and it is royalty-free.

How do I open an existing GUI in MATLAB?

Type guide in command window. A new GUI dialog box will appear. In the dialog box you will select the existing GUI project. To to the tab and you will find the gui file which you want to edit.

How do you end a program with code in MATLAB?

quit( code ) returns the specified value as the MATLAB exit code. quit( code ,"force") bypasses finish. m and terminates MATLAB with the exit code.


2 Answers

The first place you need to go is Matlab Help on Creating Graphical User Interfaces .

Then, you can watch this tutorial video or this one

This tutorial is also good.

like image 120
ThibThib Avatar answered Oct 15 '22 00:10

ThibThib


Here are all the videos that I have made about making MATLAB GUIs

http://blogs.mathworks.com/videos/category/gui-or-guide/

like image 27
MatlabDoug Avatar answered Oct 14 '22 23:10

MatlabDoug