Here you can find the source of max(double x, double y)
Parameter | Description |
---|---|
x | an argument |
y | another argument |
public static double max(double x, double y)
//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); } }