Wave sound generator
Enter a function. Use x as a variable. It goes from 0 to 39999 in short, 59999 in medium and 79999 in long sounds.The function's output value should be in a range of -1 to 1.
Examples:
- Sort of a bass drum: cos(200000/(x+1117))
- Sine wave: sin(x/50)
- Laser sound: sin(x*x/100000)
- Weird noise: 0.5 * cos(pi*sin(x/75)) + 0.5 * sin(pi*sin(x/100))
- Another weird noise: sin(100000/abs(x-5000.01)) * (1-abs(x-5000.01)/5000.01)
Found a bug? Send me some feedback.
<< Back to services