rsc3/doc/help/ugen/binary-ops/excess.help.scrbl
2022-08-28 12:27:01 +02:00

24 lines
415 B
Racket

#lang scribble/manual
@(require (for-label racket))
@title{(excess a b)}
clipping residual. Returns the difference of the original signal
and its clipped form: (a - clip2(a,b)).
@racketblock[
(audition
(out 0 (excess (f-sin-osc ar 1000 0) (line kr 0 1 8 do-nothing))))
]
@racketblock[
(audition
(out 0 (let ((a (f-sin-osc ar 1000 0))
(b (line kr 0 1 8 do-nothing)))
(sub a (clip2 a b)))))
]