Skip to content

tuple_asinTupleAsinTupleAsintuple_asintuple_asin🔗

Short description🔗

tuple_asinTupleAsinTupleAsintuple_asintuple_asin — Compute the arcsine of a tuple.

Signature🔗

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

def tuple_asin_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_asin( double T, double* ASin )

Herror T_tuple_asin( const Htuple T, Htuple* ASin )

HTuple HTuple::TupleAsin( ) const

HTuple HTuple.TupleAsin( )

Description🔗

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

ASin := asin(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

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

Arcsine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_acosTupleAcos, tuple_atanTupleAtan, tuple_atan2TupleAtan2

See also

tuple_sinTupleSin, tuple_sinhTupleSinh, tuple_asinhTupleAsinh

Module🔗

Foundation