Answers for "inverse square root python"

19

python square root

import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Posted by: Guest on July-09-2020
2

square root python 3

import math
print(math.sqrt(589485))
Posted by: Guest on December-01-2020
1

how to square root in python

import math
answer = math.sqrt(16)
Posted by: Guest on September-19-2020
0

inverse square root python

import struct

def isqrt(number):
    threehalfs = 1.5
    x2 = number * 0.5
    y = number
    
    packed_y = struct.pack('f', y)       
    i = struct.unpack('i', packed_y)[0]  # treat float's bytes as int 
    i = 0x5f3759df - (i >> 1)            # arithmetic with magic number
    packed_i = struct.pack('i', i)
    y = struct.unpack('f', packed_i)[0]  # treat int's bytes as float
    
    y = y * (threehalfs - (x2 * y * y))  # Newton's method
    return y
Posted by: Guest on August-21-2021

Code answers related to "inverse square root python"

Python Answers by Framework

Browse Popular Code Answers by Language