Team:Paris/Modeling/More f1 Algo
From 2008.igem.org
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