Java sqr sqrt_float(float value)

Here you can find the source of sqrt_float(float value)

Description

sqrfloat

License

Open Source License

Declaration

public static float sqrt_float(float value) 

Method Source Code

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

public class Main {
    public static float sqrt_float(float value) {
        return (float) Math.sqrt((double) value);
    }//from   w  ww  .ja v a 2 s.co m
}

Related

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