Team:Paris/Modeling/f1prog
From 2008.igem.org
(Difference between revisions)
(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...) |
|||
Line 1: | Line 1: | ||
+ | |||
+ | <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: #B20000} | ||
+ | span.syscmd {color: #B28C00} | ||
+ | } | ||
+ | |||
+ | </style> | ||
+ | </html> | ||
+ | |||
+ | <div style="text-align: left"> | ||
+ | == ƒ1== | ||
+ | |||
<html><pre class="codeinput"> | <html><pre class="codeinput"> | ||
<span class="keyword">function</span> act_pTet = f1(TetR, aTc) | <span class="keyword">function</span> act_pTet = f1(TetR, aTc) | ||
Line 10: | Line 28: | ||
<span class="keyword">end</span> | <span class="keyword">end</span> | ||
</pre></html> | </pre></html> | ||
+ | </div> |
Latest revision as of 03:50, 30 October 2008
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