Gets the minimum of three double values. : double « Data Type « Java






Gets the minimum of three double values.

    
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */


/**
 * <p>Provides extra functionality for Java Number classes.</p>
 *
 * @author <a href="mailto:rand_mcneely@yahoo.com">Rand McNeely</a>
 * @author Stephen Colebourne
 * @author <a href="mailto:steve.downey@netfolio.com">Steve Downey</a>
 * @author Eric Pugh
 * @author Phil Steitz
 * @author Matthew Hawthorne
 * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
 * @author <a href="mailto:fredrik@westermarck.com">Fredrik Westermarck</a>
 * @since 2.0
 * @version $Id: NumberUtils.java 609475 2008-01-06 23:58:59Z bayard $
 */
public class Main {
  /**
   * <p>Gets the minimum of three <code>double</code> values.</p>
   * 
   * <p>If any value is <code>NaN</code>, <code>NaN</code> is
   * returned. Infinity is handled.</p>
   * 
   * @param a  value 1
   * @param b  value 2
   * @param c  value 3
   * @return  the smallest of the values
   * @see IEEE754rUtils#min(double, double, double) for a version of this method that handles NaN differently
   */
  public static double min(double a, double b, double c) {
      return Math.min(Math.min(a, b), c);
  }
}

   
    
    
    
  








Related examples in the same category

1.Double class creates primitives that wrap themselves around data items of the double data type
2.Min and Max values of data type double
3.Java double: double is 64 bit double precision type and used when fractional precision calculation is required.
4.Use toString method of Double class to convert Double into String.
5.Use Double constructor to convert double primitive type to a Double object.
6.Convert java Double to numeric primitive data types
7.Convert Java String to Double
8.Java Double compare example
9.Create a Double object using one of the below given constructors
10.Java Double isInfinite
11.Java Double isNaN method
12.Compare Two Java double Arrays
13.Convert from double to String
14.Convert from String to double
15.Converting a String to a double type Number
16.Ternary operator on double value
17.Binary search
18.Linear Searching double Arrays
19.The Circle Area Calculator
20.A Program That Uses the Mathematical Methods of the Math Class
21.A Program That Uses the Rounding Methods of the Math Class
22. Get Double Number
23.Compute the value of 2/3 of 5Compute the value of 2/3 of 5
24.Show INFINITY and NaN
25.Double Array
26.Obtaining the integer and fractional parts
27.Get the next machine representable number after a number, moving in the direction of another number.
28.Returns the sign for double precision x
29.Gets the maximum of three double values.
30.Compare two double values with Double.doubleToLongBits
31.Converts altitude in meters to pressure in msw