bio_img_videos

Stuart’s MATLAB Videos

Watch and Learn

Posts 491 - 500 of 568

MATLAB Basics: Cell arrays for holding different data types 3

Sometimes in MATLAB you are going to want to store different data types together in one construct rather than try and keep track of different variables. Structures work for this, but sometimes it is… 더 읽어보기 >>

User made videos

I wanted to thank everyone for posting their videos as requested in my prior post [click here]. Here are some of my favorite entries. I will be in touch with the authors to send them some fabulous… 더 읽어보기 >>

Puzzler: Difficult algorithm development challenge 10

This week’s puzzler is significantly harder than others we have done in the past, I would be surprised (and delighted) to see an answer before I go home tonight… The challenge is shown… 더 읽어보기 >>

Post your MATLAB Videos 3

It is no secret that I like teaching MATLAB through videos. I use Camtasia to make and edit my videos, I am very happy using it. If you want to make MATLAB videos too, you can use Jing, by the… 더 읽어보기 >>

MATLAB Puzzler: Finding the two closest points 23

Here is a new MATLAB Puzzler. Given two vectors representing the X and Y coordinates of some points, find the two closest points in Cartesian space. n = 10; x = rand(1,n); y = rand(1,n); … 더 읽어보기 >>

Advanced MATLAB: Capture mouse movement 35

This week we will take a look at how you can capture the mouse movement through callbacks. As the mouse moves, we will update the xdata of a line so that you are moving the line with the mouse. if… 더 읽어보기 >>

Accessing data from one widget to another in GUIDE 4

Last time, I showed how to add the newly documented UITABLE to a GUI. [click here] There were a few questions [click here] about how to access the data in the UITABLE from the callback of another… 더 읽어보기 >>

MATLAB Basics: Adding a table to a GUI 27

MATLAB GUI developers often want to have a mini-spreadsheet in their GUI. This can be done with a new widget added to the set of controls available in GUIDE. Now with UITABLE you can add that… 더 읽어보기 >>

Advanced MATLAB: Timer objects 44

Sometimes you want something to update in MATLAB on a regular schedule. Timer objects can do that for you. We first introduced this for test and measurement applications, but it has since been moved… 더 읽어보기 >>

MATLAB Basics: Using dbstop if error 3

When MATLAB throws an error, if you are in a function, you will end up at the base workspace and lose access to the variables as they were in the function when the error was thrown. This makes it… 더 읽어보기 >>

Posts 491 - 500 of 568

이 게시물은 작성자 개인의 의견이며, MathWorks 전체의 의견을 대변하는 것은 아닙니다.