Skip to content

tuple_asinhTupleAsinhTupleAsinhtuple_asinhtuple_asinh🔗

Short description🔗

tuple_asinhTupleAsinhTupleAsinhtuple_asinhtuple_asinh — Compute the inverse hyperbolic sine of a tuple.

Signature🔗

tuple_asinh( number T, out number Asinh )void TupleAsinh( const HTuple& T, HTuple* Asinh )static void HOperatorSet.TupleAsinh( HTuple t, out HTuple asinh )def tuple_asinh( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_asinh_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_asinh( double T, double* Asinh )

Herror T_tuple_asinh( const Htuple T, Htuple* Asinh )

HTuple HTuple::TupleAsinh( ) const

HTuple HTuple.TupleAsinh( )

Description🔗

tuple_asinhTupleAsinh computes the inverse hyperbolic sine of the input tuple Ttt. The inverse hyperbolic sine is always returned as a floating point number in Asinhasinhasinh. The inverse hyperbolic sine 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_asinhTupleAsinh, which can be used in an expression in the following syntax:

Asinh := asinh(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.

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

Inverse hyperbolic sine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_acoshTupleAcosh, tuple_atanhTupleAtanh

See also

tuple_asinTupleAsin, tuple_sinTupleSin, tuple_asinTupleAsin

Module🔗

Foundation