/// <summary> /// Returns the 0 based index of the maximum value of the array. /// </summary> /// <param name="arr">The array.</param> /// <returns>The 0 based index.</returns> public static int ArgMax(this int[] arr) { return(VectorUtilities.ArgMax(arr)); }