Plot V-S plot of Enzyme Activity by Euler Algorithm
조회 수: 4 (최근 30일)
이전 댓글 표시
I need help regarding an assignment question on enzyme kinetics
Stimulate V-S plot of enzyme activity from the equation :-
ds/dt =-Vm*s/(Km+s).
use Euler's algorithm.
use Vm=5 Km=200 Assume that the simulation will run for 200s at the time interval of 0.1. Initial value of S being 100
I am trying the following script
S=input('enter substrate concentration') V=input('enter velocity') V=0; Km=input('enter michaelis-menten constant') Km=0; tmax=input('maximum time'); tau=input('minimum interval'); S(1)=1; T(1)=1; for i=1:S S(1+S)=S(100)*(Km+S); T(1+S)=-T(1)*V*S; end
plot(V,S)
and then saving as enzyme.mat
but it is showing the following error
Attempted to access S(100); index out of bounds because numel(S)=1.
Error in enzyme2 (line 11) S(1+S)=S(100)*(Km+S); please explain me the corrections Thank you
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Genomics and Next Generation Sequencing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!