Java Double Number Divide div(final double a, final double b)

Here you can find the source of div(final double a, final double b)

Description

Div.

License

LGPL

Parameter

Parameter Description
a the a
b the b

Return

the double

Declaration

public static double div(final double a, final double b) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

public class Main {
    /**/*from   w  w w  . j a  v a2s . co m*/
     * Div.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double div(final double a, final double b) {
        return a / b;
    }
}

Related

  1. div(double a, double b)
  2. div(double a, double b)
  3. div(Double dividend, Double quotient)
  4. div(double divisor, int dividend, int preciseFigures)
  5. div(double left, double right)
  6. divdivmin(double a, double b, double c, double d)
  7. divergenceKL(double... a)
  8. divHex(double num)
  9. divide(Double a, Double b)