Skip to content

tuple_cbrtTupleCbrtTupleCbrttuple_cbrttuple_cbrt🔗

Short description🔗

tuple_cbrtTupleCbrtTupleCbrttuple_cbrttuple_cbrt — Compute the cube root of a tuple.

Signature🔗

tuple_cbrt( number T, out number Cbrt )void TupleCbrt( const HTuple& T, HTuple* Cbrt )static void HOperatorSet.TupleCbrt( HTuple t, out HTuple cbrt )def tuple_cbrt( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_cbrt_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_cbrt( double T, double* Cbrt )

Herror T_tuple_cbrt( const Htuple T, Htuple* Cbrt )

HTuple HTuple::TupleCbrt( ) const

HTuple HTuple.TupleCbrt( )

Description🔗

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

Cbrt := cbrt(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.

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

Cube root of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_powTuplePow

See also

tuple_sqrtTupleSqrt

Module🔗

Foundation