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
Inv_1
function quant_aTc = Inv_f1(inducer_quantity) % gives the quantity of [aTc]i needed to get inducer_quantity of a protein % throught a gene behind pTet global gamma, f0; % parameters function equa = F(x) equa = f1( (f0/gamma) , x ) - inducer_quantity; end options=optimset('LevenbergMarquardt','on','TolX',1e-10,'MaxFunEvals',1e10,'TolFun',1e-10,'MaxIter',1e4); quant_aTc = fsolve(F,1,options); end