1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
class:: LPCError
summary:: Linear Predictive Coding Gone Wrong
categories:: UGens>Analysis
//SLUGens released under the GNU GPL as extensions for SuperCollider 3, by Nick Collins, http://composerprogrammer.com/index.html
keyword:: SLUGens
Description::
Experimental use of LPC on a block by block basis. The interesting thing is the imperfections introduced by the resynthesis.
classmethods::
method::ar
argument::input
What do you think you put here?
argument::p
Number of filter coefficients with which to model the signal within 64 sample blocks, 1-64.
Examples::
code::
{LPCError.ar(AudioIn.ar, MouseX.kr(1,64))}.play
{LPCError.ar(SinOsc.ar(LFNoise0.kr(0.2,400,500)), MouseX.kr(1,64))}.play
{LPCError.ar(Resonz.ar(Mix(Saw.ar(100*[1,0.9,0.8,0.7,0.5])),1000,0.1,2), MouseX.kr(1,64))}.play
::
|