Загрузка...

My Movie

Here is a code snippet that will help create the sequential images import numpy as np import matplotlib.pyplot as plt from scipy.integrate import odeint from mpl_toolkits.mplot3d import Axes3D for i in range(2:30): rho = i sigma = 10.0 beta = 8.0 / 3.0 def f(state, t): x, y, z = state # unpack the state vector return sigma * (y - x), x * (rho - z) - y, x * y - beta * z # derivatives state0 = [1.0, 1.0, 1.0] t = np.arange(0.0, 40.0, 0.01) states = odeint(f, state0, t) fig = plt.figure() ax = fig.gca(projection='3d') ax.plot(states[:,0], states[:,1], states[:,2]) plt.show()

Видео My Movie автора Водный мир
Страницу в закладки Мои закладки
Все заметки Новая заметка Страницу в заметки