absolute
absolute() -> llll
Generates an audio process operation for computing the absolute value of a buffer signal.
Output
Absolute operation [llll]
Usage
absolute
is meant to be used with the process
function:
$buffer = importaudio('singing.wav'); ## input buffer
$op = absolute(); ## processing operation
$buffer = $buffer.process($op); ## apply processing
$buffer.view('after absolute process')