Name
tuple_addtuple_addTupleAddTupleAdd — Add two tuples.
Herror tuple_add(double S1, double S2, double* Sum)
Herror T_tuple_add(const Htuple S1, const Htuple S2, Htuple* Sum)
void TupleAdd(const HTuple& S1, const HTuple& S2, HTuple* Sum)
HTuple HTuple::TupleAdd(const HTuple& S2) const
tuple_addtuple_addTupleAddTupleAddTupleAdd computes the sum of the input tuples S1S1S1S1s1
and S2S2S2S2s2. If both tuples have the same length the
corresponding elements of both tuples are added. Otherwise, either
S1S1S1S1s1 or S2S2S2S2s2 must have length 1. In this case, the
addition is performed for each element of the longer tuple with the
single element of the other tuple. If two integer numbers are
added, the result is again an integer number. If a floating point
number is added to another number, the result is a floating point
number. If two strings are added, the addition corresponds to a
string concatenation. If a number and a string are added, the
number is converted to a string first. Thus, the addition also
corresponds to a string concatenation in this case.
Exception: Empty input tuples
If either or both of the input tuples are empty, the operator returns an
empty tuple.
HDevelop In-line Operation
HDevelop provides an in-line operation for tuple_addtuple_addTupleAddTupleAddTupleAdd,
which can be used in an expression in the following syntax:
Sum := S1 + S2
The + operation corresponds to a
string concatenation
if S1S1S1S1s1 and S2S2S2S2s2 contain strings.
- Multithreading type: independent (runs in parallel even with exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
S1S1S1S1s1 (input_control) number(-array) → HTupleHTupleHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*)
Input tuple 1.
S2S2S2S2s2 (input_control) number(-array) → HTupleHTupleHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*)
Input tuple 2.
SumSumSumSumsum (output_control) number(-array) → HTupleHTupleHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*)
Sum of the input tuples.
tuple_subtuple_subTupleSubTupleSubTupleSub
tuple_cumultuple_cumulTupleCumulTupleCumulTupleCumul
Foundation