How can I plot the the graph of Hill Equation for cooperativity Velocity vs. Substrate concentration in MATLAB

8 vues (au cours des 30 derniers jours)
k1 = 3
k_1 = 1;
k2 = 3;
k3 = 0.6;
k_3 = 1;
k4 = 3;
E0 = 2;
K1 = (k_1+k2)/k1;
K2 = (k_3+k4)/k3;
(k2*K2+k4.*S(i))*E0.*S(i)/(K1*K2+K2.*S(i)+S(i)^2);

Réponse acceptée

Walter Roberson
Walter Roberson le 26 Déc 2021
k1 = 3
k1 = 3
k_1 = 1;
k2 = 3;
k3 = 0.6;
k_3 = 1;
k4 = 3;
E0 = 2;
K1 = (k_1+k2)/k1;
K2 = (k_3+k4)/k3;
S = linspace(0, 10);
hill = (k2*K2+k4*S).*E0.*S./(K1*K2+K2.*S + S.^2);
plot(S, hill)

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by