Here you can find the source of minIndex(double... data)
Parameter | Description |
---|---|
data | a parameter |
public static int minIndex(double... data)
//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; } }