Skip to content

tuple_coshTupleCoshTupleCoshtuple_coshtuple_cosh🔗

Short description🔗

tuple_coshTupleCoshTupleCoshtuple_coshtuple_cosh — Compute the hyperbolic cosine of a tuple.

Signature🔗

tuple_cosh( number T, out number Cosh )void TupleCosh( const HTuple& T, HTuple* Cosh )static void HOperatorSet.TupleCosh( HTuple t, out HTuple cosh )def tuple_cosh( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_cosh_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_cosh( double T, double* Cosh )

Herror T_tuple_cosh( const Htuple T, Htuple* Cosh )

HTuple HTuple::TupleCosh( ) const

HTuple HTuple.TupleCosh( )

Description🔗

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

Cosh := cosh(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.

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

Hyperbolic cosine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_sinhTupleSinh, tuple_tanhTupleTanh

See also

tuple_acoshTupleAcosh, tuple_cosTupleCos, tuple_acosTupleAcos

Module🔗

Foundation