Java Array Min Value minDouble(double... values)

Here you can find the source of minDouble(double... values)

Description

Return the minimum value from the specified arguments

License

Apache License

Parameter

Parameter Description
values The values to return the minimum from.

Return

The minimum value.

Declaration

public static double minDouble(double... values) 

Method Source Code

//package com.java2s;
/**//from  www . ja va  2 s .c  o m
 * Copyright 2000-2012 TrackMate
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Return the minimum value from the specified arguments
     * @param values The values to return the minimum from.
     * @return The minimum value.
     */
    public static double minDouble(double... values) {
        Double result = null;
        for (double d : values) {
            if (result == null || d < result) {
                result = d;
            }
        }
        return result;
    }
}

Related

  1. minCeilDiv(int c, int... vals)
  2. minDiff(int... offs)
  3. minDist(double[] q, double[] c, double[][] distMatrix, int orig_n)
  4. minDistance(int[][] colors, int len, int[] color)
  5. minDouble(double a, double... others)
  6. minDoubleArray(double[] data)
  7. minElement(int[] array)
  8. minFastSort(double x[], int idx[], int n, int m)
  9. minFastSort(double[] x, int[] idx, int size)