50. tabread

tabread is a linear table-lookup reader.

index is the index position of the table.

scaled is a boolean value indicating the scaling type. a true (1) value indicates it is normalized to be 0-1. A false (0) value indicates that it is in range 0-length.

offset is the initial table offset (I never use this, it is literally always 0 for me).

wrap is a boolean to turn on/off table wrapping, and can be used to do hard sync.

ft is a lambda function that will produce the ftable to read from.

<<ugens-top>>=
(define (tabread index scaled offset wrap ft)
  (param index)
  (param scaled)
  (param offset)
  (param wrap)
  (ft)
  (rvl "tabread"))



prev | home | next