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