Fibonacci n/n-1 oranının garip bir biçimde Fi'ye yaklaşması | CriminalZ.Org • Hack Forum

Fibonacci n/n-1 oranının garip bir biçimde Fi'ye yaklaşması

n9ine

n9ine

Member
LV
2
 
Awards
5
Grafik bayağı garibime gitti, paylaşayım dedim

1051949560.png


Python:
import matplotlib.pyplot as plt
 
n1, n2 = 8, 8
 
x = []
y = []
 
for i in range(50):
    print(n2/n1)
    y.append(n2/n1)
    x.append(i)
    nth = n1 + n2
 
    n1 = n2
    n2 = nth
 
 
plt.plot(x, y, label="fibonacci")
plt.legend()
 
plt.title("fi")
plt.xlabel("x")
plt.ylabel("y")
plt.show()
 

About Us

CriminalZ Hack Forum is a cracking forum where you can find anything related to cracking. If you are looking for a great place to learn, make new friends, CriminalZ is your new home.

DMCA & Contact

Any DMCA takedown notice should be sent to this contact email: [email protected] We only respond and take action to plaintext e-mails. Do not send PDF or any other files.

Hack Forum

Forbiddien World

Top Bottom