tuple_atantuple_atanTupleAtanTupleAtantuple_atan (Operator)
Name
tuple_atantuple_atanTupleAtanTupleAtantuple_atan
— Compute the arctangent of a tuple.
Signature
tuple_atan( : : T : ATan)
Herror tuple_atan(double T, double* ATan)
Herror T_tuple_atan(const Htuple T, Htuple* ATan)
def tuple_atan(t: MaybeSequence[Union[float, int]]) -> Sequence[float]
def tuple_atan_s(t: MaybeSequence[Union[float, int]]) -> float
Description
tuple_atantuple_atanTupleAtanTupleAtantuple_atan
computes the arctangent of the input tuple
TTTtt
. The arctangent is always returned as a floating point
number in ATanATanATanATanatan
. The angles in ATanATanATanATanatan
are represented in
radians. The arctangent 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_atantuple_atanTupleAtanTupleAtantuple_atan
,
which can be used in an expression in the following syntax:
ATan := atan(T)
Execution Information
- Multithreading type: independent (runs in parallel even with exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Parameters
TTTtt
(input_control) number(-array) →
HTupleMaybeSequence[Union[float, int]]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)
Input tuple.
ATanATanATanATanatan
(output_control) angle.rad(-array) →
HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)
Arctangent of the input tuple.
Alternatives
tuple_atan2tuple_atan2TupleAtan2TupleAtan2tuple_atan2
,
tuple_asintuple_asinTupleAsinTupleAsintuple_asin
,
tuple_acostuple_acosTupleAcosTupleAcostuple_acos
See also
tuple_tantuple_tanTupleTanTupleTantuple_tan
,
tuple_tanhtuple_tanhTupleTanhTupleTanhtuple_tanh
,
tuple_atanhtuple_atanhTupleAtanhTupleAtanhtuple_atanh
Module
Foundation