int ArrayMinimum(object array[ ], int count=WHOLE_ARRAY, int start=0)
Searches for the element with minimum value. The function returns position of this minimum 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 minValueidx=ArrayMinimum(num_array); Print("Min value = ", num_array[minValueIdx]); |