Java Array Min Value min(double[] array)

Here you can find the source of min(double[] array)

Description

Return the minimum value in this array.

License

Open Source License

Parameter

Parameter Description
array the array to search the lowest value for

Return

the lowest value in the array

Declaration

public static double min(double[] array) 

Method Source Code

//package com.java2s;
/**//from  ww  w. j  a v a 2  s .  c o  m
 * This file is part of the Java Machine Learning Library
 *
 * The Java Machine Learning Library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * The Java Machine Learning Library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with the Java Machine Learning Library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Copyright (c) 2006-2009, Thomas Abeel
 *
 * Project: http://java-ml.sourceforge.net/
 *
 */

public class Main {
    /**
     * Return the minimum value in this array.
     *
     * @param array the array to search the lowest value for
     * @return the lowest value in the array
     */
    public static double min(double[] array) {
        double min = array[0];
        for (double d : array)
            if (d < min)
                min = d;
        return min;
    }
}

Related

  1. min(double... value)
  2. min(double[] a)
  3. min(double[] a, double[] b)
  4. min(double[] arr)
  5. min(double[] arr)
  6. min(double[] array)
  7. min(double[] array)
  8. min(double[] array)
  9. min(double[] array)