NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
ex_ArrayMin.nxc

This is an example of how to use the ArrayMin function.

task main()
{
int data[40];
for (int i = 0; i < 40; i++)
data[i] = rand();
TextOut(0, LCD_LINE1, "Min value = ");
int x = ArrayMin(data, NA, NA); // start at 0 and go to length(data);
NumOut(0, LCD_LINE2, x);
}