Skip to content

tuple_acoshTupleAcoshTupleAcoshtuple_acoshtuple_acosh🔗

Short description🔗

tuple_acoshTupleAcoshTupleAcoshtuple_acoshtuple_acosh — Compute the inverse hyperbolic cosine of a tuple.

Signature🔗

tuple_acosh( number T, out number Acosh )void TupleAcosh( const HTuple& T, HTuple* Acosh )static void HOperatorSet.TupleAcosh( HTuple t, out HTuple acosh )def tuple_acosh( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_acosh_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_acosh( double T, double* Acosh )

Herror T_tuple_acosh( const Htuple T, Htuple* Acosh )

HTuple HTuple::TupleAcosh( ) const

HTuple HTuple.TupleAcosh( )

Description🔗

tuple_acoshTupleAcosh computes the inverse hyperbolic cosine of the input tuple Ttt. The inverse hyperbolic cosine is always returned as a floating point number in Acoshacoshacosh. The inverse hyperbolic cosine of a string is not allowed.

Exception: Empty input tuple🔗

If the input tuple is empty, the operator returns an empty tuple.

HDevelop In-line Operation🔗

HDevelop provides an in-line operation for tuple_acoshTupleAcosh, which can be used in an expression in the following syntax:

Acosh := acosh(T)

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

Parameters🔗

Ttt (input_control) number(-array) → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)MaybeSequence[Union[float, int]]Htuple (double / Hlong)

Input tuple.

Acoshacoshacosh (output_control) number(-array) → (real)HTuple (double)HTuple (double)Sequence[float]Htuple (double)

Inverse hyperbolic cosine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_asinhTupleAsinh, tuple_atanhTupleAtanh

See also

tuple_coshTupleCosh, tuple_cosTupleCos, tuple_acosTupleAcos

Module🔗

Foundation