tuple_maxtuple_maxTupleMaxTupleMaxtuple_max (Operator)

Name

tuple_maxtuple_maxTupleMaxTupleMaxtuple_max — Return the maximal element of a tuple.

Signature

tuple_max( : : Tuple : Max)

Herror tuple_max(const Hlong Tuple, double* Max)

Herror T_tuple_max(const Htuple Tuple, Htuple* Max)

void TupleMax(const HTuple& Tuple, HTuple* Max)

HTuple HTuple::TupleMax() const

static void HOperatorSet.TupleMax(HTuple tuple, out HTuple max)

HTuple HTuple.TupleMax()

def tuple_max(tuple: MaybeSequence[Union[float, int, str]]) -> Sequence[Union[float, int, str]]

def tuple_max_s(tuple: MaybeSequence[Union[float, int, str]]) -> Union[float, int, str]

Description

tuple_maxtuple_maxTupleMaxTupleMaxTupleMaxtuple_max returns the maximal element of all elements of the input tuple TupleTupleTupleTupletupletuple. All elements of TupleTupleTupleTupletupletuple either have to be strings or numbers (integer or floating point numbers). It is not allowed to mix strings with numerical values. The result parameter MaxMaxMaxMaxmaxmax will contain a floating point number, if at least one element of TupleTupleTupleTupletupletuple is a floating point number. If all elements of TupleTupleTupleTupletupletuple are integer numbers the resulting sum will also be an integer number.

Exception: Empty input tuple

If the input tuple is empty, an exception is raised.

HDevelop In-line Operation

HDevelop provides an in-line operation for tuple_maxtuple_maxTupleMaxTupleMaxTupleMaxtuple_max, which can be used in an expression in the following syntax:

Max := max(Tuple)

Execution Information

Parameters

TupleTupleTupleTupletupletuple (input_control)  tuple(-array) HTupleMaybeSequence[Union[float, int, str]]HTupleHtuple (integer / real / string) (int / long / double / string) (Hlong / double / HString) (Hlong / double / char*)

Input tuple.

MaxMaxMaxMaxmaxmax (output_control)  tuple(-array) HTupleSequence[Union[float, int, str]]HTupleHtuple (real / integer / string) (double / int / long / string) (double / Hlong / HString) (double / Hlong / char*)

Maximal element of the input tuple elements.

Alternatives

tuple_mintuple_minTupleMinTupleMinTupleMintuple_min, tuple_meantuple_meanTupleMeanTupleMeanTupleMeantuple_mean, tuple_deviationtuple_deviationTupleDeviationTupleDeviationTupleDeviationtuple_deviation, tuple_sumtuple_sumTupleSumTupleSumTupleSumtuple_sum, tuple_lengthtuple_lengthTupleLengthTupleLengthTupleLengthtuple_length, tuple_mediantuple_medianTupleMedianTupleMedianTupleMediantuple_median

See also

tuple_max2tuple_max2TupleMax2TupleMax2TupleMax2tuple_max2, tuple_min2tuple_min2TupleMin2TupleMin2TupleMin2tuple_min2

Module

Foundation