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

17 views (last 30 days)
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);

Accepted Answer

Walter Roberson
Walter Roberson on 26 Dec 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)

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!