Hi John.
J> Is there a simple way to add a constant dc value to every sample?
This will add 0.3 to every sample:
(map-channel (lambda (y) (+ y 0.3)))
The same for the first 1000 samples:
(map-channel (lambda (y) (+ y 0.3)) 0 1000)
Cheers,
-anders