ComplexRes:
Filter:
Classes (extension) | UGens > Filters > Linear

ComplexRes : UGen : AbstractFunction : Object
ExtensionExtension

FM-modulable resonating filter

Description

A resonating filter which can be modulated in its resonating frequency at audio rate without blowing up. Implements the filter structure found in

Julian Parker and Till Bovermann (2013): Dynamic FM synthesis using a network of complex resonator filters

Developed as part of the DEIND project.

Class Methods

ComplexRes.ar(in: 0.0, freq: 100.0, decay: 0.2)

Arguments:

in

input signal

freq

resonating frequency, can be modulated at audiorate.

decay

decaytime in seconds

Returns:

A UGen.

Inherited class methods

Instance Methods

Inherited instance methods

Examples

{ComplexRes.ar(Pulse.ar(0.1,0.001,0.1),50+ 5000*SinOsc.ar(50),0.5)}.play;

Feed forward network (core part): http://sccode.org/1-4V6

Recursive network (core part): http://sccode.org/1-4V7

Full code can be found on http://tai-studio.org/index.php/projects/deind/complexres/ (search for "Full code examples").