MATLAB: I want these kinetic models to fit in MATLAB but I don’t know how to proceed. I am in real worry. If anyone can solve/code, it would be of great help. Thanks a million!!

kinetic model

Best Answer

You need to define Haldane as follows (your text-book expression is misleading)
Haldane = @(S) 0.478*S / ((1.137 + S) .* (1 + (S/1.139)));
Then you get:
which matches the line on your text-book graph.
Related Question