Sequence Generator Demo by Phil Burk
This Applet demonstrates someof the Sequence generating tools in JMSL
- Java Music Specification Language.
This Applet requires the JSyn Plugin from SoftSynth.com.
To Do:
Select different sequence generators from the menu:
-
Random - Completely random selection of notes. Not very "musical".
-
Random Walk - Random interval from previous note.
-
HailStone - Sequence generated by this formula:
If the previous value is odd, then next= previous*3 - 5;
If the previous value is even, then next= previous/2 + 1;
Click on a number to force the sequence to start from that number. For
HailStone Sequence, my favorite numbers are: 11, 19, 37, 38, 49.