Skip to main content

hypertan

hypertan() -> llll

Generates an audio process operation for applying a hyperbolic tangent function to a buffer.


Output

Hyperbolic tangent operation [llll]


Usage

hypertan is meant to be used with the process function:

$buffer = importaudio('singing.wav'); ## input buffer
$op = hypertan(); ## processing operation
$buffer = $buffer.process($op); ## apply processing
$buffer.view('after hypertan process')