Java Number Min Value min(double x, double y)

Here you can find the source of min(double x, double y)

Description

Returns the smaller of two double values, but treats NaN as the greatest possible value.

License

Open Source License

Parameter

Parameter Description
x an argument
y another argument

Return

the smaller of arguments

Declaration

public static double min(double x, double y) 

Method Source Code

//package com.java2s;
/* ============================================================
 * JRobin : Pure java implementation of RRDTool's functionality
 * ============================================================
 *
 * Project Info:  http://www.jrobin.org// ww w .  ja  va  2 s.  c  o m
 * Project Lead:  Sasa Markovic (saxon@jrobin.org);
 *
 * (C) Copyright 2003, by Sasa Markovic.
 *
 * Developers:    Sasa Markovic (saxon@jrobin.org)
 *                Arne Vandamme (cobralord@jrobin.org)
 *
 * This library is free software; you can redistribute it and/or modify it under the terms
 * of the GNU Lesser General Public License as published by the Free Software Foundation;
 * either version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License along with this
 * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 */

public class Main {
    /**
     * Returns the smaller of two double values, but treats NaN as the greatest possible
     * value. Note that <code>Math.min()</code> behaves differently for NaN arguments.
     *
     * @param x an argument
     * @param y another argument
     * @return the smaller of arguments
     */
    public static double min(double x, double y) {
        return Double.isNaN(x) ? y : Double.isNaN(y) ? x : Math.min(x, y);
    }
}

Related

  1. min(double a, double b, double c, double d)
  2. min(double d1, double d2)
  3. min(Double first, Double second)
  4. min(double one, double two)
  5. min(double v1, double v2, double v3, double v4)
  6. min(final float a, final float b)
  7. min(final float a, final float b)
  8. min(final float a, final float b, final float c)
  9. min(final int a, final int b)