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 57 58 59 60 61 62
|
<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
-n
</CsOptions>
<CsInstruments>
sr = 44100
ksmps = 32
nchnls = 2
0dbfs = 1
;an 'empty' function table with 10 points
giTable ftgen 0, 0, -10, 2, 0
instr 1
;print inital values of giTable
puts "\nInitial table content:", 1
indx = 0
until indx == ftlen(giTable) do
iVal table indx, giTable
printf_i "Table index %d = %f\n", 1, indx, iVal
indx += 1
od
;create array
kArr[] init 10
;fill in values
kArr genarray 1, 10
;print array values
printf "%s", 1, "\nArray content:\n"
kndx = 0
until kndx == lenarray(kArr) do
printf "kArr[%d] = %f\n", kndx+1, kndx, kArr[kndx]
kndx += 1
od
;copy array values to table
copya2ftab kArr, giTable
;print modified values of giTable
printf "%s", 1, "\nModified table content after copya2ftab:\n"
kndx = 0
until kndx == ftlen(giTable) do
kVal table kndx, giTable
printf "Table index %d = %f\n", kndx+1, kndx, kVal
kndx += 1
od
;turn instrument off
turnoff
endin
</CsInstruments>
<CsScore>
i 1 0 0.1
</CsScore>
</CsoundSynthesizer>
|