Java Array Min Value min(float[] floats)

Here you can find the source of min(float[] floats)

Description

min

License

Apache License

Return

the smallest element of the given array

Declaration

public static float min(float[] floats) 

Method Source Code

//package com.java2s;
/**/*from ww w. ja  va 2s.co  m*/
 * Copyright 2013 Robin Stumm (serverkorken@googlemail.com, http://dermetfan.bplaced.net)
 *
 * 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 smallest element of the given array */
    public static float min(float[] floats) {
        float min = Float.POSITIVE_INFINITY;
        for (float f : floats)
            min = f < min ? f : min;
        return min;
    }
}

Related

  1. min(float... fs)
  2. min(float... values)
  3. min(float... values)
  4. min(float[] array)
  5. min(float[] array, float min)
  6. min(float[] ids)
  7. min(float[] in, int[] idx)
  8. min(float[] numbers)
  9. min(float[] v1, float[] v2)