scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / BHiPass4.schelp
blob80f28112dba0ad4789e5aa182b42bbe7dc6e06cf
1 class:: BHiPass4
2 summary:: 24db/oct rolloff - 4th order resonant  Hi Pass Filter [1]
3 categories:: UGens>Filters>BEQSuite
4 related:: Classes/SOS, Classes/BLowPass, Classes/BLowPass4, Classes/BHiPass, Classes/BPeakEQ, Classes/BLowShelf, Classes/BHiShelf, Classes/BBandPass, Classes/BBandStop, Classes/BAllPass
6 description::
7 The B equalization suite is based on the Second Order Section (link::Classes/SOS::) biquad UGen.
9 note::
10 Biquad coefficient calculations imply certain amount of CPU overhead. These plugin UGens contain optimizations such that the coefficients get updated only when there has been a change to one of the filter's parameters. This can cause spikes in CPU performance and should be considered when using several of these units.
13 [1] this is a pseudo link::Classes/UGen::. BHiPass4 is built by cascading 2 link::Classes/SOS:: sections.
15 classmethods::
17 method:: ar
18 argument:: in
19 input signal to be processed.
20 argument:: freq
21 cutoff frequency.
22 argument:: rq
23 the reciprocal of Q.  bandwidth / cutoffFreq.
24 argument:: mul
25 argument:: add
27 examples::
28 code::
29 s.boot;
31 z = {
32         BHiPass4.ar(
33                 SoundIn.ar([0,1]),
34                 MouseX.kr(10, 20000, \exponential), // cutoff freq.
35                 MouseY.kr(0.1, 1.0, \linear), // rq
36                 0.5); // mul
37 }.play)
38 z.release;