Difference between revisions of "Audio functions"

From DarkWiki
Jump to: navigation, search
(Introduction)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Introduction==
 
==Introduction==
  
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). Each element is typically a float (or double) in the range -1 to 1.
  
* *t* qwef
+
* '''t''' Time, a positive number
 +
* '''d''' delta, a real number in the range of 0 to 1 (inclusive)
  
 
==Elementary function generators==
 
==Elementary function generators==
Line 12: Line 13:
 
((t/pi) % 2-1)
 
((t/pi) % 2-1)
 
</pre>
 
</pre>
 +
 +
 +
See: https://www.mediawiki.org/wiki/Extension:Math/MathJax_testing and https://www.mediawiki.org/wiki/Extension:Math/Help:Formula
  
 
==Additive function generators==
 
==Additive function generators==
Line 17: Line 21:
 
===Sine to Saw (additive)===
 
===Sine to Saw (additive)===
  
Bend a SINE wave into a SAW wave.
+
Bend a SINE wave into a SAW wave. A delta (d) dictates how much SINE and SAW wave to add together.
 
 
t = time (positive)
 
d = Proportion of each wave (0-1, where 0 is all SAW and 1 is all SINE).
 
  
 
<pre>
 
<pre>
 
(1-d)*((t/pi) % 2-1) + (d)*(sin(t))
 
(1-d)*((t/pi) % 2-1) + (d)*(sin(t))
 
</pre>
 
</pre>

Latest revision as of 11:54, 23 November 2018

Introduction

This page lists some simple function generators that produce waves (suitable for digital audio). Each element is typically a float (or double) in the range -1 to 1.

  • t Time, a positive number
  • d delta, a real number in the range of 0 to 1 (inclusive)

Elementary function generators

Saw

((t/pi) % 2-1)


See: https://www.mediawiki.org/wiki/Extension:Math/MathJax_testing and https://www.mediawiki.org/wiki/Extension:Math/Help:Formula

Additive function generators

Sine to Saw (additive)

Bend a SINE wave into a SAW wave. A delta (d) dictates how much SINE and SAW wave to add together.

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