You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x = np.random.random(c) # a generált pontok x értéke a [0;1] tartományban
y = np.random.random(c) # a generált pontok y értéke a [0;1] tartományban
d = np.sqrt(x * x + y * y) # minden pont távolsága az origótól.
d0 = np.array([d[i] for i in range(c) if d[i] <= 1.0]) # azon távolságok, melyek a kör területére esnek
d1 = np.array([d[i] for i in range(c) if d[i] > 1.0]) # azon távolságok, melyek a kör területén kívül esnek (ezt nem használjuk fel, csak a szemléltetés végett szerepel)