arctan
arctan() -> llll
Generates an audio process operation for applying an arc-tangent function to a buffer.
Output
Arc tangent operation [llll]
Usage
arctan
is meant to be used with the process
function:
$buffer = importaudio('singing.wav'); ## input buffer
$op = arctan(); ## processing operation
$buffer = $buffer.process($op); ## apply processing
$buffer.view('after arctan process')