Cosh / Computation Layer
Calculate the hyperbolic cosine of values in a column. Similar to pandas cosh(), numpy.cosh(), or R's cosh() function.
Mathematical form: where:
- Input domain: all real numbers
- Output range:
- Key point:
- Property:
Applications:
- Suspension cable analysis
- Signal amplification curves
- Catenary arch calculations
Note: Values grow exponentially with input magnitude. May require attention to numerical overflow for large inputs.
Table
0
0
Table
Transforms
[, ...]Select
columnThe numeric column for hyperbolic cosine calculation. Examples:
- 0.0 → 1.0 (minimum value)
- 1.0 → 1.5431...
- -1.0 → 1.5431... (symmetric)
- 2.0 → 3.7622...
Large inputs may cause overflow
AsColumn
nameName for the new column. If not provided, the system generates a unique name. If AsColumn
matches an existing column, the exists column is replaced. The name should follow valid column naming conventions.