packages feed

hsc3-0.21: Help/Ugen/randN.help.hs

-- randN ; two channel sin tones
sinOsc ar (X.randN 2 440 442) 0 * 0.1

-- randN ; two channel sin tones ; id
sinOsc ar (X.randNId 2 'α' 440 442) 0 * 0.1

-- randN ; n node klang synthesis ; id
let n = 240
    f = X.randNId n 'α' 40 18000
    a = X.randNId n 'β' 0.1 0.3
    p = X.randNId n 'γ' (-1) 1
    s = klangSpec_mce f a p
in klang ar 1 0 s * 0.05

-- randN ; mce...
let f = X.randNId 2 'α' (mce2 440 441) 442 in sinOsc ar f 0 * 0.1