Java Number Max Value max(double x, double y)

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

Description

Returns the greater of two double values, but treats NaN as the smallest possible value.

License

Open Source License

Parameter

Parameter Description
x an argument
y another argument

Return

the lager of arguments

Declaration

public static double max(double x, double y) 

Method Source Code

//package com.java2s;
/* ============================================================
 * JRobin : Pure java implementation of RRDTool's functionality
 * ============================================================
 *
 * Project Info:  http://www.jrobin.org//w ww.  j a va2 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 greater of two double values, but treats NaN as the smallest possible
     * value. Note that <code>Math.max()</code> behaves differently for NaN arguments.
     *
     * @param x an argument
     * @param y another argument
     * @return the lager of arguments
     */
    public static double max(double x, double y) {
        return Double.isNaN(x) ? y : Double.isNaN(y) ? x : Math.max(x, y);
    }
}

Related

  1. max(double num1, double num2, double num3)
  2. max(double number1, double number2)
  3. max(double one, double two)
  4. max(double paramDouble1, double paramDouble2, double paramDouble3)
  5. max(double v1, double v2, double v3, double v4)
  6. max(double x0, double x1, double x2)
  7. max(final double a, final double b, final double c)
  8. max(final float a, final float b)
  9. max(final float a, final float b)