float vecmax(float *array){ int i; float max; max = array[0]; for(i=0;i<128;i=i+1) if(array[i] > max) max = array[i]; return max;}