ArcCosh / Computation Layer

Calculate the inverse hyperbolic cosine (arccosh) of values in a column. Similar to pandas arccosh(), numpy.arccosh(), or R's acosh() function.

Mathematical form: where:

  • Input domain:
  • Output range:

Common applications:

  • Relativistic physics calculations
  • Quantum mechanics analysis
  • Signal processing
  • Hyperbolic geometry
  • Catenary curve analysis
  • Network theory calculations

Note: Returns null for inputs < 1 and preserves existing nulls. Results are always non-negative real numbers.

Table
0
0
Table

Transforms

[, ...]

Select

column

The numeric column for inverse hyperbolic cosine calculation. Examples:

  • Energy levels (1.0 → 0.0)
  • Boost parameters (2.0 → 1.317...)
  • Growth factors (5.0 → 2.292...)
  • Scaling ratios (10.0 → 2.993...)

Values must be greater than or equal to 1

Name 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.