int ArrayMaximum(object array[ ], int count=WHOLE_ARRAY, int start=0)
Searches for the element with maximum value. The function returns position of this maximum element in the array.
最大値を持つ要素を検索します。この関数は、配列でこの最大要素の位置を返します。
Parameters:
パラメータ:
1 2 3 4 5 6 7 8 | <b>array[]</b> - The numeric array to search in. 検索対象の数値配列。 <b>count</b> - The amount of elements to search in. 検索する要素の総量。 <b>start</b> - Initial search index. 検索を開始するインデックス。 |
Sample:
サンプル:
1 2 3 | double num_array[15]={4,1,6,3,9,4,1,6,3,9,4,1,6,3,9}; int maxValueIdx=ArrayMaximum(num_array); Print("Max value = ", num_array[maxValueIdx]); |