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

8 ビュー (過去 30 日間)
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);

採用された回答

Walter Roberson
Walter Roberson 2021 年 12 月 26 日
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)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by