Add files via upload

This commit is contained in:
Silviu Marian Udrescu 2020-04-25 22:25:30 -04:00 committed by GitHub
parent d263ee5c56
commit 3b6d0a7a46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View file

@ -9,6 +9,8 @@ def get_number_DL(n):
return 1000000
elif np.abs(n - int(n)) < epsilon:
return np.log2(1+abs(n))
elif np.abs(n - np.pi) < epsilon:
return np.log2(1+3)
# check if real
else:
PrecisionFloorLoss = 1e-14