Java Array Min Value minValue(double array[][])

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

Description

min Value

License

Open Source License

Declaration

public static double minValue(double array[][]) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static double minValue(double array[][]) {
        double minValue = 9999;

        for (int i = 0; i < array.length; i++) {
            for (int j = 0; j < array[i].length; j++) {
                if (array[i][j] < minValue) {
                    minValue = array[i][j];
                }//from   w  w w. j  a va2  s  . c  o m
            }
        }

        return minValue;
    }
}

Related

  1. minOfSortedValues(double[] sortedValues)
  2. minOfSubRange(double[] xs, int start, int end)
  3. minOverArraySubset(double[] array, Iterable subset)
  4. minPrim(final int... numbers)
  5. minsort(int[] vet1)
  6. minValue(double[] from)
  7. minValue(double[] values)
  8. minValue(double[] values)
  9. minValue(final int[] arr)