Код: Выделить всё
import math
import matplotlib.pyplot as plt
import numpy as np
# Data for plotting
L = 0.0001
b = 0.0079
h = 0.405
t = np.arange(0, 1, 0.01)
y = 1/(b+(h*L))*[(h*L)+b*math.exp((-h+(b/L)*t))]
plt.plot(t,y)
plt.grid()
plt.show()
Подробнее здесь: https://stackoverflow.com/questions/790 ... when-tryin