Create algorithmic music with mathematical formulas
Bytebeat uses simple mathematical formulas to generate audio. The variable 't' represents time, and the formula calculates each audio sample.
Try experimenting with bitwise operations (&, |, ^, >>, <<) and arithmetic operations (+, -, *, /). For Funcbeat, use only mathematical expressions without time variables (no 't', 'time', etc).
Examples:
Bytebeat: t * ((t>>12|t>>8)&63&t>>4)
Funcbeat: Math.sin(0.5) * Math.cos(0.3)