Java sqr sqrt2(float x)

Here you can find the source of sqrt2(float x)

Description

sqrt

License

Open Source License

Declaration

public static final float sqrt2(float x) 

Method Source Code

//package com.java2s;
/*//from  w w  w .  j a  v  a 2s  .  c o  m
 * Copyright (c) 2006-2011 Karsten Schmidt
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * http://creativecommons.org/licenses/LGPL/2.1/
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

public class Main {
    public static final float sqrt2(float x) {
        x = fastInverseSqrt(x);
        if (x > 0) {
            return 1.0f / x;
        } else {
            return 0;
        }
    }

    public static final float fastInverseSqrt(float x) {
        float half = 0.5F * x;
        int i = Float.floatToIntBits(x);
        i = 0x5f375a86 - (i >> 1);
        x = Float.intBitsToFloat(i);
        return x * (1.5F - half * x * x);
    }
}

Related

  1. sqrt(int val)
  2. sqrt(long val)
  3. sqrt(long x)
  4. sqrt(Short a)
  5. sqrt(short value)
  6. sqrt2sq(double x, double y)
  7. sqrt_double(double d)
  8. sqrt_float(float value)
  9. sqrt_long(final long x)