File: bugas.csd

package info (click to toggle)
csound 1%3A6.18.1%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 63,260 kB
  • sloc: ansic: 192,643; cpp: 14,149; javascript: 9,654; objc: 9,181; python: 3,376; java: 3,337; sh: 1,840; yacc: 1,255; xml: 985; perl: 635; lisp: 411; tcl: 341; lex: 217; makefile: 128
file content (56 lines) | stat: -rw-r--r-- 1,027 bytes parent folder | download | duplicates (6)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<CsoundSynthesizer>
<CsOptions>
-n -m128
</CsOptions>
<CsInstruments>

   instr 1 ;works

;create array and fill with numbers 1..10
   kArr[] fillarray 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
          printf  "%s", 1, "\ninstr 1:\n"

;print content
   kndx    =       0
   while kndx != lenarray(kArr) do
         printf  "kArr[%d] = %f\n", kndx+1, kndx, kArr[kndx]
   kndx += 1
od

;turnoff
         turnoff
   endin

   instr 2 ;expected to add 10 to each element -- got destruction

;create array and fill with numbers 1..10
kArr[] fillarray 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
         printf  "%s", 1, "\ninstr 2:\n"

;print content
kndx    =       0
   until kndx == lenarray(kArr) do
         printf  "kArr[%d] = %f\n", kndx+1, kndx, kArr[kndx]
kndx += 1
od

;add 10
kArr += 10

;print content
kndx    =       0
   until kndx == lenarray(kArr) do
         printf  "kArr[%d] = %f\n", kndx+1, kndx, kArr[kndx]
kndx += 1
od

;turnoff
         turnoff
   endin
</CsInstruments>
<CsScore>
i 1 0 .1
i 2 0 .1
</CsScore>
</CsoundSynthesizer>