> what is the largest number that (gh n) can return?
i don't think there is a maximum, but you can always try to set the
level with (gain).
sometimes i tend to use a logarithmic version of (gh) that might work
better for your case also. it's something like this:
(define (gl n)
(log (+ 1 (gh n))))
gabor