removed casting

This commit is contained in:
leobr 2022-10-07 11:14:17 +02:00
parent 14704d5cc6
commit 1638ceadcb
1 changed files with 3 additions and 3 deletions

View File

@ -7,8 +7,8 @@ def s2n(s1n):
def s2n_new(s1n): def s2n_new(s1n):
return np.sqrt((s1n ** 2) / (2 * (1 + np.sqrt(1 - ((s1n ** 2) / 4))))) return np.sqrt((s1n ** 2) / (2 * (1 + np.sqrt(1 - ((s1n ** 2) / 4)))))
r = int(1) #Radius r = 1 #Radius
n = int(6) #Anzahl Ecken n = 6 #Anzahl Ecken
sn = r sn = r
sn_new = r sn_new = r
x = np.array([]) x = np.array([])
@ -35,7 +35,7 @@ plt.plot(x, y_new)
plt.xscale('log', base=2) plt.xscale('log', base=2)
plt.xlim((2**3, 2**31)) plt.xlim((2**3, 2**31))
plt.ylim((3.125, 3.15)) plt.ylim((3.125, 3.15))
plt.legend(["pi", "pi_new"]) plt.legend(["2*pi", "2*pi_new"])
plt.show() plt.show()
# mit der ersten Formel stimmt der berechnete Wert ab n = 50331648 nicht mehr. # mit der ersten Formel stimmt der berechnete Wert ab n = 50331648 nicht mehr.