Java sqr sqrt_double(double d)

Here you can find the source of sqrt_double(double d)

Description

sqrdouble

License

Open Source License

Declaration

public static final float sqrt_double(double d) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static final float sqrt_double(double d) {
        return (float) Math.sqrt(d);
    }//from w ww.jav a2 s .  c  om
}

Related

  1. sqrt(long x)
  2. sqrt(Short a)
  3. sqrt(short value)
  4. sqrt2(float x)
  5. sqrt2sq(double x, double y)
  6. sqrt_float(float value)
  7. sqrt_long(final long x)
  8. sqrtInt(Integer num)