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 CenterFile Exchange에서 Develop 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