Here you can find the source of min(float[] array, float min)
public static float[] min(float[] array, float min)
//package com.java2s; /*// w ww. j a v a 2 s .c o m * Copyright (C) 2010-2014 Andreas Maier * CONRAD is developed as an Open Source project under the GNU General Public License (GPL). */ public class Main { public static float[] min(float[] array, float min) { for (int i = 0; i < array.length; i++) { array[i] = Math.min(array[i], min); } return array; } }