Popularne tematy
#
Bonk Eco continues to show strength amid $USELESS rally
#
Pump.fun to raise $1B token sale, traders speculating on airdrop
#
Boop.Fun leading the way with a new launchpad on Solana.
[x(t_0) = x_0]
———————
import time
from math import prod
print("--- Inicjowanie symulacji systemu dynamicznego ---")
# Atraktory
Y = [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]
# Funkcja ewolucji analitycznej x(t): Interpolacja Lagrange'a rządząca dynamiką
f = lambda t: sum(y * prod((t-k)/(j-k) for k in range(len(Y)) if k!=j) for j,y in enumerate(Y))
# Ewolucja czasowa: Krok przez dyskretny czas t, obserwując stan x(t)
acc = ""
for t in range(len(Y)): c=chr(int(round(f(t)))); acc+=c; print(f"Czas t={t:2} | x(t): '{c}' | Trajektoria: {acc}"); time.sleep(0.2)
Najlepsze
Ranking
Ulubione

