Skip to content

tuple_sinTupleSinTupleSintuple_sintuple_sin🔗

Short description🔗

tuple_sinTupleSinTupleSintuple_sintuple_sin — Compute the sine of a tuple.

Signature🔗

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

def tuple_sin_s( t: MaybeSequence[Union[float, int]] ) -> floatHerror tuple_sin( double T, double* Sin )

Herror T_tuple_sin( const Htuple T, Htuple* Sin )

HTuple HTuple::TupleSin( ) const

HTuple HTuple.TupleSin( )

Description🔗

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

Sin := sin(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) angle.rad(-array) → (real / integer)HTuple (double / Hlong)HTuple (double / int / long)MaybeSequence[Union[float, int]]Htuple (double / Hlong)

Input tuple.

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

Sine of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_cosTupleCos, tuple_tanTupleTan

See also

tuple_asinTupleAsin, tuple_sinhTupleSinh, tuple_asinhTupleAsinh

Module🔗

Foundation