Difference between revisions of "Audio functions"

From DarkWiki
Jump to: navigation, search
(Sine to Saw (additive))
(Introduction)
Line 2: Line 2:
  
 
This page lists some simple function generators that produce waves (suitable for digital audio).
 
This page lists some simple function generators that produce waves (suitable for digital audio).
 +
 +
* *t* qwef
  
 
==Elementary function generators==
 
==Elementary function generators==

Revision as of 15:48, 23 December 2016

Introduction

This page lists some simple function generators that produce waves (suitable for digital audio).

  • *t* qwef

Elementary function generators

Saw

((t/pi) % 2-1)

Additive function generators

Sine to Saw (additive)

Bend a SINE wave into a SAW wave.

t = time (positive) d = Proportion of each wave (0-1, where 0 is all SAW and 1 is all SINE).

(1-d)*((t/pi) % 2-1) + (d)*(sin(t))