Skip to content

tuple_expTupleExpTupleExptuple_exptuple_exp🔗

Short description🔗

tuple_expTupleExpTupleExptuple_exptuple_exp — Compute the exponential of a tuple.

Signature🔗

tuple_exp( number T, out number Exp )void TupleExp( const HTuple& T, HTuple* Exp )static void HOperatorSet.TupleExp( HTuple t, out HTuple exp )def tuple_exp( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_exp_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_exp( double T, double* Exp )

Herror T_tuple_exp( const Htuple T, Htuple* Exp )

HTuple HTuple::TupleExp( ) const

HTuple HTuple.TupleExp( )

Description🔗

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

Exp := exp(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.

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

Exponential of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_exp2TupleExp2, tuple_exp10TupleExp10, tuple_powTuplePow

See also

tuple_logTupleLog, tuple_log2TupleLog2, tuple_log10TupleLog10

Module🔗

Foundation