Stuart’s MATLAB Videos

Watch and Learn

Posts 1 - 10 of 40

結果: 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…. 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

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… 続きを読む >>

Posts 1 - 10 of 40