Team:Paris/Modeling/plot

From 2008.igem.org

(Difference between revisions)
Line 3: Line 3:
|-valign="top"
|-valign="top"
|style="background:#ffffff"|
|style="background:#ffffff"|
 +
 +
To go back to the previous page : [[Team:Paris/Modeling#Corresponding codes|Clic here]].
 +
<html xmlns:v="urn:schemas-microsoft-com:vml"
<html xmlns:v="urn:schemas-microsoft-com:vml"

Revision as of 17:32, 6 August 2008

To go back to the previous page : Clic here.


% Main function for the simulations

% Main function for the simulations

clear, close all;

%% File to use to obtain :

% 1 - The ouput of the system

% 2 - A visualization of that output

% 3 - The value of a criteria describing whether there are oscillations

tmax=200;

t=[0:0.1:tmax];

%Prop=0.3;

V0=[1;0;0;0;0;0;0;0;0];%Initial state

V=simul(t,V0);%Numerical simulation of the system

% Visualization of the output

Z=[V(:,1),V(:,5),V(:,6),V(:,9)];

figure;

plot(t,V');

legend('FlhDC','FliA','FliL','FlgA','FlhB','AHL interieur','AHL ext','mTetR','TetR');

%legend('FlhDC','FlhB','AHL int','TetR');

% xlabel('Time');

% ylabel('Concentrations')