ClassesClassesClassesClasses | | | | Operators

tuple_min2tuple_min2TupleMin2tuple_min2TupleMin2TupleMin2 (Operator)

Name

tuple_min2tuple_min2TupleMin2tuple_min2TupleMin2TupleMin2 — Calculate the elementwise minimum of two tuples.

Signature

tuple_min2( : : T1, T2 : Min2)

Herror tuple_min2(double T1, double T2, double* Min2)

Herror T_tuple_min2(const Htuple T1, const Htuple T2, Htuple* Min2)

Herror tuple_min2(const HTuple& T1, const HTuple& T2, double* Min2)

Herror tuple_min2(const HTuple& T1, const HTuple& T2, HTuple* Min2)

void TupleMin2(const HTuple& T1, const HTuple& T2, HTuple* Min2)

HTuple HTuple::TupleMin2(const HTuple& T2) const

void HOperatorSetX.TupleMin2(
[in] VARIANT T1, [in] VARIANT T2, [out] VARIANT* Min2)

VARIANT HTupleX.TupleMin2(
[in] VARIANT T1, [in] VARIANT T2)

static void HOperatorSet.TupleMin2(HTuple t1, HTuple t2, out HTuple min2)

HTuple HTuple.TupleMin2(HTuple t2)

Description

tuple_min2tuple_min2TupleMin2tuple_min2TupleMin2TupleMin2 returns the elementwise minimum of the input tuples T1T1T1T1T1t1 and T2T2T2T2T2t2 in the output tuple Min2Min2Min2Min2Min2min2. If both tuples have the same length the corresponding elements of both tuples are compared. Otherwise, either T1T1T1T1T1t1 or T2T2T2T2T2t2 must have length 1. In this case, the comparison is performed for each element of the longer tuple with the single element of the other tuple. If the corresponding elements of the two tuples have the same type, it is allowed to mix strings with numerical values.

Parallelization

Parameters

T1T1T1T1T1t1 (input_control)  number(-array) HTupleHTupleHTupleVARIANTHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*) (double / Hlong / BSTR) (double / Hlong / char*)

Input tuple 1.

T2T2T2T2T2t2 (input_control)  number(-array) HTupleHTupleHTupleVARIANTHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*) (double / Hlong / BSTR) (double / Hlong / char*)

Input tuple 2.

Min2Min2Min2Min2Min2min2 (output_control)  number(-array) HTupleHTupleHTupleVARIANTHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*) (double / Hlong / BSTR) (double / Hlong / char*)

Elementwise minimum of the input tuples.

See also

tuple_max2tuple_max2TupleMax2tuple_max2TupleMax2TupleMax2, tuple_mintuple_minTupleMintuple_minTupleMinTupleMin, tuple_maxtuple_maxTupleMaxtuple_maxTupleMaxTupleMax

Module

Foundation


ClassesClassesClassesClasses | | | | Operators