Lesson 7 +10 XP

Speed Up & Multiply

Speed Up & Multiply

The * operator speeds things up, and it works at every level of a pattern.

Speed up a single element

Here hh2 makes the hi-hat play twice as fast, hh3 three times as fast.

Speed up a whole sub-sequence

The brackets multiply as a unit - the whole [hh rim] becomes faster.

Speed up to crazy rhythms

At *32 the hi-hat becomes a high-frequency "pitch = really fast rhythm".

Multiply inside brackets, multiply outside

  • hh*2 - multiply an element.
  • [hh rim]*2 - multiply a sub-sequence.
  • *1.5 - fractional multipliers work too, for a "swung" feel.

TL;DR

  • * speeds things up by the given factor.
  • hh*2 = that element twice as fast.
  • [a b]*2 = the whole sub-sequence twice as fast.
  • Values like 1.5 and 32 are all fair game.