The best way to learn how to program is to do something useful, so this introduction to MATLAB is built around a common scientific task: data analysis. Our real goal isn’t to teach you MATLAB, but to teach you the basic concepts that all programming depends on. We use MATLAB in our lessons because:
But the two most important things are to use whatever language your colleagues are using, so that you can share your work with them easily, and to use that language well.
GNU Octave
GNU Octave is a free and open-source alternative to MATLAB which shares its syntax (see more about compatibility). Thus, if you don’t have access to MATLAB, you can easily set up Octave on your computer and still work through the lesson.
Prerequisites
To begin tackling this lesson, you will need to:
- Understand the concepts of files and directories, and the concept of a “working directory”.
- Know how to start up MATLAB, and access the command window (which generally has a
>>
prompt).- Know how to create, edit and save text files.
00:00 | Analyzing Patient Data | How can I process and visualize my data? |
00:30 | Writing MATLAB Scripts | How can I save and re-use my programs? |
01:00 | Repeating With Loops | How can I repeat the same operations on multiple values? |
01:30 | Making Choices | How can programs do different things for different data values? |
02:00 | Creating Functions | How can I teach MATLAB how to do new things? |
02:30 | Defensive Programming | How can I make sure my programs are correct? |
03:00 | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.