Rep.m

From 2006.igem.org

(Difference between revisions)
Jump to: navigation, search
m
 
Line 1: Line 1:
  function pFactor = rep(r,K,n);
  function pFactor = rep(r,K,n);
   
   
-
     % Jürg's function:
+
     % Jörg's function:
     % pFactor = 1./(1+(r./K).^n);
     % pFactor = 1./(1+(r./K).^n);
      
      

Latest revision as of 07:05, 15 September 2005

function pFactor = rep(r,K,n);

    % Jörg's function:
    % pFactor = 1./(1+(r./K).^n);
    
    % modified:
    % r: concentration of repressor
    % K: Hill constant (Affinity)
    % n: cooperativity, i.e. how steep the curve will be (plot([0:0.05:3], rep([0:0.05:3], 1, 5)))
    
    pFactor = 1./(1+K.*r.^n);
Personal tools
Past/present/future years