max
max (float score1, float score2)
receives n scores (output of n score functions) and returns their max
Input
score1, score2,...(float) - n scores (results of score functions)
Output
score (float) - the max of the score list
Example
Where -
score1, score2, score3 are the results of a score function.
score_max is the max of score1, score2, score3...
Last updated