~ubuntu-branches/ubuntu/trusty/csound-manual/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/pcauchy.csd

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Sateler
  • Date: 2011-08-01 22:21:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110801222158-90kslkp5ujci2f5d
Tags: 1:5.13~dfsg-1
* New upstream release
 - Add Menno Knevel to the copyright file
 - Refresh patch 2000-stripped-opcodes.diff
 - Update copyright hints file
* Update Vcs-* headers
* Bump Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<CsoundSynthesizer>
2
 
<CsOptions>
3
 
; Select audio/midi flags here according to platform
4
 
; Audio out   Audio in
5
 
-odac           -iadc    ;;;RT audio I/O
6
 
; For Non-realtime ouput leave only the line below:
7
 
; -o pcauchy.wav -W ;;; for file output any platform
8
 
</CsOptions>
9
 
<CsInstruments>
10
 
 
11
 
; Initialize the global variables.
12
 
sr = 44100
13
 
kr = 4410
14
 
ksmps = 10
15
 
nchnls = 1
16
 
 
17
 
; Instrument #1.
18
 
instr 1
19
 
  ; Generate a random number between 0 and 1.
20
 
  ; kalpha = 1
21
 
 
22
 
  i1 pcauchy 1
23
 
 
24
 
  print i1
25
 
endin
26
 
 
27
 
 
28
 
</CsInstruments>
29
 
<CsScore>
30
 
 
31
 
; Play Instrument #1 for one second.
32
 
i 1 0 1
33
 
e
34
 
 
35
 
 
36
 
</CsScore>
37
 
</CsoundSynthesizer>
 
1
<CsoundSynthesizer>
 
2
<CsOptions>
 
3
; Select audio/midi flags here according to platform
 
4
; Audio out   Audio in
 
5
-odac           -iadc    ;;;RT audio I/O
 
6
; For Non-realtime ouput leave only the line below:
 
7
; -o pcauchy.wav -W ;;; for file output any platform
 
8
</CsOptions>
 
9
<CsInstruments>
 
10
 
 
11
; Initialize the global variables.
 
12
sr = 44100
 
13
kr = 4410
 
14
ksmps = 10
 
15
nchnls = 1
 
16
 
 
17
; Instrument #1.
 
18
instr 1
 
19
  ; Generate a random number between 0 and 1.
 
20
  ; kalpha = 1
 
21
 
 
22
  i1 pcauchy 1
 
23
 
 
24
  print i1
 
25
endin
 
26
 
 
27
; Instrument #2.
 
28
instr 2
 
29
  ; Generate a random number between 0 and 1.
 
30
  ; kalpha = 1
 
31
 
 
32
  seed 0
 
33
 
 
34
  i1 pcauchy 1
 
35
 
 
36
  print i1
 
37
endin
 
38
 
 
39
</CsInstruments>
 
40
<CsScore>
 
41
 
 
42
; Play Instrument #1 for one second.
 
43
i 1 0 1
 
44
; Play Instrument #2 for one second.
 
45
i 2 1 1
 
46
e
 
47
 
 
48
 
 
49
</CsScore>
 
50
</CsoundSynthesizer>