yeastΒΆ

  • ../_images/sphx_glr_yeast_001.png
  • ../_images/sphx_glr_yeast_002.png
  • ../_images/sphx_glr_yeast_003.png
import matplotlib.pyplot as plt
import numpy as np
from scipy.integrate import odeint

import reg_bench.ode


yeast = reg_bench.ode.yeast_glycolysis()

dy = yeast()


for i in range(3):
    y0 = yeast.initial_conditions(noise=True)
    t = np.linspace(0, 5, 5 * 10 ** 5)

    s = odeint(dy, y0, t)
    for j in range(3):
        plt.figure(j)
        plt.plot(t, s[:, j])

plt.show()

Total running time of the script: ( 0 minutes 1.073 seconds)

Gallery generated by Sphinx-Gallery