func_POSm4
PURPOSE 
example function: chain with positive regulation [Baum et al., 2016]
SYNOPSIS 
function[dx]=func_POSm4(t,x,klin,knonlin)
DESCRIPTION 
example function: chain with positive regulation [Baum et al., 2016]
CROSS-REFERENCE INFORMATION 
This function calls:
- workflow_LoopDetect_Matlab % LoopDetect: Feedback Loop Detection in ODE models in MATLAB
SOURCE CODE 
0001 function[dx]=func_POSm4(t,x,klin,knonlin) 0002 % example function: chain with positive regulation [Baum et al., 2016] 0003 dx=zeros(4,1); 0004 %J=jacob_POSm4(t,x,klin,knonlin); 0005 dx(1)= klin(1)-(klin(2)*(1 + (x(4)/knonlin(1))^knonlin(2))+klin(3))*x(1); 0006 dx(2)= klin(2)*(1 + (x(4)/knonlin(1))^knonlin(2))*x(1) - (klin(4) + klin(5))*x(2); 0007 dx(3)= klin(4)*x(2) - (klin(6) + klin(7))*x(3); 0008 dx(4)= klin(6)*x(3) - klin(8)*x(4); 0009 end
Generated on Wed 24-Jun-2020 09:38:33 by m2html © 2005