67. osc

osc is a classic table lookup oscillator. It has a frequency freq with amplitude amp. The initial phase (normalized) is set with phs, and should be a constantvalue and not a cable. ft is a lambda value that produces the ftable used by osc.

<<ugens-top>>=
(define (osc freq amp phs ft)
  (param freq)
  (param amp)
  (param phs)
  (ft)
  (rvl "osc"))



prev | home | next