Team:Paris/Modeling/More f1 Algo
From 2008.igem.org
(Difference between revisions)
(Replacing page with '<html> <style type="text/css"> pre {font-size: 1.2em} span.keyword {color: #0000FF} span.comment {color: #228B22} span.string {color: #A020F0} span.untermstring {color: #B2000...') |
(→find_1) |
||
Line 16: | Line 16: | ||
== find_ƒ1 == | == find_ƒ1 == | ||
- | + | <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="keyword">global</span> beta16 K13 n13 K12 n12; | ||
+ | <span class="comment">% parameters | ||
+ | </span> | ||
+ | act_pTet = beta16 * ( 1 - hill( TetR*(1 - hill( aTc, K13, n13 )), K12, n12 ) ); | ||
+ | |||
+ | <span class="keyword">end</span> | ||
+ | </pre></html> | ||
== Inv_ƒ1 == | == Inv_ƒ1 == |
Revision as of 03:43, 30 October 2008
find_1
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