summaryrefslogtreecommitdiff
path: root/examples/centroid.csd
diff options
context:
space:
mode:
authorFelipe Sateler <fsateler@debian.org>2014-01-24 13:54:37 -0300
committerFelipe Sateler <fsateler@debian.org>2014-01-24 13:54:37 -0300
commitbcf06a42deb371baf3deb9f4addb474b08273120 (patch)
tree4a8c3fb811dd164d4486628d8eff6043ebe8a6c3 /examples/centroid.csd
parent3a91171181113761a14bcc36a086a8dda144b77b (diff)
Imported Upstream version 6.02~dfsg
Diffstat (limited to 'examples/centroid.csd')
-rw-r--r--examples/centroid.csd38
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/centroid.csd b/examples/centroid.csd
new file mode 100644
index 0000000..c0fc1b0
--- /dev/null
+++ b/examples/centroid.csd
@@ -0,0 +1,38 @@
+<CsoundSynthesizer>
+<CsOptions>
+; Select audio/midi flags here according to platform
+-odac ;;;realtime audio out
+;-iadc ;;;uncomment -iadc if realtime audio input is needed too
+; For Non-realtime ouput leave only the line below:
+; -o centroid.wav -W ;;; for file output any platform
+</CsOptions>
+<CsInstruments>
+
+sr = 44100
+ksmps = 32
+nchnls = 2
+0dbfs = 1
+
+giSine ftgen 0, 0, 16384, 10, 1
+
+instr 1
+
+ktrig init 1 ;calculate centroid
+a1 oscil3 0.5, p4, giSine ;of the sine wave
+k1 centroid a1, ktrig, 16384
+asig oscil3 0.5, k1, giSine
+ printk2 k1 ;print & compare:
+ outs a1, asig ;left = original, right = centroid signal
+
+endin
+</CsInstruments>
+<CsScore>
+
+i1 0 2 20
+i1 + 2 200
+i1 + 2 2000
+e
+
+</CsScore>
+</CsoundSynthesizer>
+