Getting started with Max and MSP

Max (previously referred to as Max/MSP/Jitter) is a visual programming language developed by Cycling '74. It has become one of the most prominent coding environments for experimental musicians, composers, and visual artists over the last 20 years. Unlike traditional text-based languages, Max relies on graphically manipulating a modular system of objects connected by patch cords in a virtual blank canvas called a patcher (i.e. a "Max patch"). Objects are like pre-built self-contained programs and are used like dynamically linked libraries. Objects have inlets and outlets for input and output of data.

The program Max is actually a couple of programs under the hood. The "Max" part of Max (named after Max Matthews, a pioneer of early computer music) deals with event scheduling and uses the data types int, float, list, symbol, and bang. "MSP" (short for Max Signal Processing and a tip of the hat to Miller S. Puckette) deals with digital signal processing (DSP) and audio rate signals. "Jitter" deals with more complex matrix data structures and is used for experimental video processing (and other creative implementations). This course will predominantly focus on using Max and MSP.

Max comes with a number of well-documented and thorough tutorials to help familiarize yourself with the language and some of the quirks of the environment. The Max Documentation can be found online but it can also be launched from within the Max application, which brings the advantage to be able to open the interactive patches from the tutorials. You can access this Documentation page by clicking Help --> Reference in the top toolbar. Click on the Max tutorials sections and complete the first 7 tutorials (from "Hello" to "Simple Math in Max").

To test your ability and ensure that you've mastered the basic concepts from those tutorials, be sure you are able to answer all the questions in the Self-Quiz section below. After completing this Self-Quiz, check out the additional resources at the bottom of this page with other learning resources for learning Max basics.

Self-Quiz

Additional Resources