A chord is a subset of a scale. A chord can contain any number of tones, up to and including all of the tones of the scale. Chords are created by modulating a note track with scale, chord, and index modulators. Voicing modulators may optionally be added also. In the same way that scale modulators build a current scale consisting of notes, chord modulators build a current chord consisting of scale tones. A chord modulator's step values are signed zero-based indexes into the current scale, wrapped as needed to avoid range errors. The order of the chord modulators within the track's modulation list matters, because the step values are appended to the chord in that order. Muted chord modulators are excluded.
Chord modulation occurs when a track with unmuted scale modulators also has unmuted chord modulators. In this case the track's index modulation accesses the current chord instead of the current scale. This adds an extra level of mapping. The index modulation picks a chord tone, the chord tone maps to a scale tone, and the scale tone maps to a note. Suppose the track has four chord modulators, which contain 0, 2, 4, and 6 respectively. These correspond to the first, third, fifth, and seventh notes of the current scale. Assuming the scale is C major, this chord modulation produces a C major seventh chord.
For a scale, an index value of one accesses the second scale tone, which in this example contains two, which maps to the note D.
Scale Tone | 0 | 2 | 4 | 5 | 7 | 9 | 11 |
---|---|---|---|---|---|---|---|
Index | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
Note | C | D | E | F | G | A | B |
For a chord, an index value of one accesses the second chord tone, which in this example contains the value two. Two is then used as an index into the current scale (see above), accessing the third scale tone, which contains four, which maps to the note E.
Scale Tone | 0 | 4 | 7 | 11 |
---|---|---|---|---|
Chord Tone | 0 | 2 | 4 | 6 |
Index | 0 | 1 | 2 | 3 |
Note | C | E | G | B |
Chord modulation changes the meaning of index modulation, such that chord tones are indexed instead of scale tones. Notice that three things are being distinguished: the subset of notes (the scale), the subset of scale tones (the chord), and which chord tone is picked (the index).
If a track uses chords, voicings are applied to the chord instead of the scale. Chord modulators can have note modulators, and these are applied first as the current chord is being built. Bear in mind that altering a chord modulator alters it in scale tones, not semitones.