Minim core
ugens
analysis
Name Reciprocal
Description A UGen which simply returns the reciprocal value of it's input. Because this UGen is intended for use with control signals, rather than audio signals, it behaves as a mono UGen, regardless of whether or not it has been configured with more than one channel. This means that the output of Reciprocal will always be the reciprocal of the first (and usually only) channel of the denominator input copied to all output channels, similar to Constant.
Examples
None available
Constructors
Reciprocal();
Reciprocal(fixedDenominator);
Parameters
fixedDenominator   the denominator value if the input is never connected
Fields
denominator   denominator is the default audio input

Methods
channelCount ( )   Returns the number of channels this UGen has been configured to generate.

getLastValues ( )   Return the last values generated by this UGen. This will most often be used by sub-classes when pulling data from their inputs.

patch ( )   Send the output of this UGen to another UGen, UGenInput, or AudioOutput.

printInputs ( )   Prints all inputs connected to this UGen (for debugging)

sampleRate ( )   Returns the sample rate of this UGen.

setChannelCount ( )   Let this UGen know how many channels of audio you will be asking it for.

setReciprocal ( )   Used to change the fixedDenominator value after instantiation

setSampleRate ( )   Set the sample rate for this UGen.

tick ( )   Generates one sample frame for this UGen.

unpatch ( )   Unpatch this UGen from an AudioOutput or other UGen.

Usage Web & Application
Related UGen