Team:Paris/Modeling/f1prog

From 2008.igem.org

(Difference between revisions)
Hugo (Talk | contribs)
(New page: <html><pre class="codeinput"> <span class="keyword">function</span> act_pTet = f1(TetR, aTc) <span class="comment">% activity of pTet in function of TetR and aTc </span> <span class="keyw...)
Newer edit →

Revision as of 03:49, 30 October 2008

function act_pTet = f1(TetR, aTc)
% activity of pTet in function of TetR and aTc
 
global beta16 K13 n13 K12 n12;
% parameters
 
act_pTet = beta16 * ( 1 - hill( TetR*(1 - hill( aTc, K13, n13 )), K12, n12 ) );
 
end