Here you can find the source of sqrt_float(float value)
public static float sqrt_float(float value)
//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 }