Team:Paris/Modeling/More f1 Algo

From 2008.igem.org

Revision as of 03:43, 30 October 2008 by Hugo (Talk | contribs)

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

Inv_ƒ1