Java Array Min Value minIndex(double... data)

Here you can find the source of minIndex(double... data)

Description

Returns the index of the minimum value in data .

License

Apache License

Parameter

Parameter Description
data a parameter

Return

the index of the minimum value

Declaration

public static int minIndex(double... data) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2009 OpenSHA.org in partnership with
 * the Southern California Earthquake Center (SCEC, http://www.scec.org)
 * at the University of Southern California and the UnitedStates Geological
 * Survey (USGS; http://www.usgs.gov)//from w  w  w . ja v a 2  s. com
 * 
 * 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 {
    /**
     * Returns the index of the minimum value in {@code data}.
     * @param data
     * @return the index of the minimum value
     */
    public static int minIndex(double... data) {
        int idx = -1;
        double d = Double.POSITIVE_INFINITY;
        for (int i = 0; i < data.length; i++)
            if (data[i] < d) {
                d = data[i];
                idx = i;
            }
        return idx;
    }
}

Related

  1. minimumDotProduct(int[] a, int[] b)
  2. minimumOf(final int[] array)
  3. minimumWordLength(String[] words)
  4. minIn(double[] array)
  5. minIndex(double values[])
  6. minIndex(double[] a)
  7. minIndex(double[] arr)
  8. minIndex(double[] list)
  9. minIndex(double[] v)