Tanh / Computation Layer
Calculate the hyperbolic tangent function. Similar to numpy.tanh() or R's tanh().
Mathematical form: Key properties:
- Output range: (-1, 1)
- Odd function: tanh(-x) = -tanh(x)
- Horizontal asymptotes at ±1
Common applications:
- Neural network activation
- Signal processing
- Data normalization
- Control systems
- Physical modeling
Note: Often used in machine learning due to its bounded output range.
Table
0
0
Table
Transforms
[, ...]Select
columnThe numeric column to compute hyperbolic tangent for. Typical inputs:
- Neural network inputs
- Signal values
- Control parameters
- Feature scaling
- Time series data
AsColumn
nameName for the new column. If not provided, the system generates a unique name. If AsColumn
matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.