summaryrefslogtreecommitdiff
path: root/examples/logcurve.csd
blob: b5d317365c0e8f9896b690fa498afca0e88fc5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
; Audio out   Audio in    Silent
-odac           -idac     -d    ;;;realtime output</CsOptions>
<CsInstruments>

sr	=	48000
ksmps	=	100
nchnls	=	2

/*--- ---*/

		instr	1	; logcurve test

kmod	phasor	1/200

kout	logcurve kmod, 2

	printk2	kmod
	printk2	kout

		endin

/*--- ---*/
</CsInstruments>
<CsScore>

i1	0	8888

e
</CsScore>
</CsoundSynthesizer>