Skip to content

tuple_acosTupleAcosTupleAcostuple_acostuple_acos🔗

Short description🔗

tuple_acosTupleAcosTupleAcostuple_acostuple_acos — Compute the arccosine of a tuple.

Signature🔗

tuple_acos( number T, out angle.rad ACos )void TupleAcos( const HTuple& T, HTuple* ACos )static void HOperatorSet.TupleAcos( HTuple t, out HTuple ACos )def tuple_acos( t: MaybeSequence[Union[float, int]] ) -> Sequence[float]

def tuple_acos_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_acos( double T, double* ACos )

Herror T_tuple_acos( const Htuple T, Htuple* ACos )

HTuple HTuple::TupleAcos( ) const

HTuple HTuple.TupleAcos( )

Description🔗

tuple_acosTupleAcos computes the arccosine of the input tuple Ttt. The arccosine is always returned as a floating point number in ACosACosacos. The angles in ACosACosacos are represented in radians. The arccosine 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_acosTupleAcos, which can be used in an expression in the following syntax:

ACos := acos(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.

Restriction: -1 <= T <= 1

ACosACosacos (output_control) angle.rad(-array) → (real)HTuple (double)HTuple (double)Sequence[float]Htuple (double)

Arccosine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_asinTupleAsin, tuple_atanTupleAtan, tuple_atan2TupleAtan2

See also

tuple_cosTupleCos, tuple_coshTupleCosh, tuple_acoshTupleAcosh

Module🔗

Foundation