Stuart’s MATLAB Videos

Watch and Learn

Posts 1 - 10 of 40

Results for: Topic: GUI or GUIDE

Adding callbacks to lines and axes in MATLAB 8

A callback is a function that gets called when you perform certain actions. For instance, you might want something to happen when you click on a line in MATLAB, or when you move the mouse in MATLAB…. read more >>

Interuptable callbacks and BusyAction in MATLAB 5

If you push a button in a MATLAB UI and this starts a long calculation, what do you want to have happen if the user pushes the button a second time? Interuptable property and BusyAction property of… read more >>

Using one callback function for multiple UI objects in GUIDE 1

By default, GUIDE creates one callback function for every object in a UI. Sometimes, you want to have one callback function serve multiple objects. This video shows one way to do this, by manually… read more >>

MATLAB: Manipulating the data in a UItable in GUIDE 14

If you have a UItable in a UI made in GUIDE, you might want to change that data in a callback. For instance, you might want to change the values or increase the size of the dataset. This short… read more >>

Adding UICONTROLS to MATLAB without GUIDE for simple interactive figures 7

There are often small tweaks to functionality that you would like for a figure in MATLAB. This video shows how to add a button to a figure that will allow you to toggle the units of a y axes between… read more >>

GUI building in MATLAB 8

This post is a continuation of the last video where we built a simple GUI in MATLAB. This continues by showing how to run initiation code for a MATLAB GUI and explains what the handles structure… read more >>

Introduction to GUI building with GUIDE in MATLAB 11

As we approach video number three hundred on this blog, I thought it was time to remake the original video that got this all started. I still refer people to it on a weekly basis. This shows you… read more >>

Passing data between GUIDE callbacks without globals in MATLAB 11

Very often MATLAB users want to share data between different callbacks that they have in their MATLAB GUIs. This video shows a technique that is applicable for when the data being shared is already… read more >>

Adding a debug button to a MATLAB GUI. 2

GUIDE GUI’s in MATLAB are really just a series of function calls triggered by callbacks associated with different uicontrols. Because these are all sub-functions, it can be difficult to get… read more >>

How to loop until a button is pushed in MATLAB 8

I had a question recently about having a process occur until a button is pressed in a GUI (or while a button is pressed). This video shows how a button can control the output of a stream of random… read more >>

Posts 1 - 10 of 40