Skip to content

tuple_sinhTupleSinhTupleSinhtuple_sinhtuple_sinh🔗

Short description🔗

tuple_sinhTupleSinhTupleSinhtuple_sinhtuple_sinh — Compute the hyperbolic sine of a tuple.

Signature🔗

tuple_sinh( number T, out number Sinh )void TupleSinh( const HTuple& T, HTuple* Sinh )static void HOperatorSet.TupleSinh( HTuple t, out HTuple sinh )def tuple_sinh( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_sinh_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_sinh( double T, double* Sinh )

Herror T_tuple_sinh( const Htuple T, Htuple* Sinh )

HTuple HTuple::TupleSinh( ) const

HTuple HTuple.TupleSinh( )

Description🔗

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

Sinh := sinh(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.

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

Hyperbolic sine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_coshTupleCosh, tuple_tanhTupleTanh

See also

tuple_asinhTupleAsinh, tuple_sinTupleSin, tuple_asinTupleAsin

Module🔗

Foundation