Team:Paris/Modeling/first parameters/Simulation

From 2008.igem.org

(Difference between revisions)
(New page: {{Paris/Menu}} {|cellspacing="5" cellpadding="10" style="background:#649CD7; width: 965px;" |-valign="top" |style="background:#ffffff"| <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns...)
 
Line 3: Line 3:
|-valign="top"
|-valign="top"
|style="background:#ffffff"|
|style="background:#ffffff"|
 +
 +
 +
To go back to the previous page : [[Team:Paris/Modeling/first parameters|First Parameters Obtained]]
 +
<html xmlns:v="urn:schemas-microsoft-com:vml"
<html xmlns:v="urn:schemas-microsoft-com:vml"

Latest revision as of 16:18, 1 August 2008


To go back to the previous page : First Parameters Obtained


% simul

% simul.m : simulation of the model

%%% Commentary: This function is used in the premiermodele.m file that has

%%% to be launched.

%%% Code:

function [y,t]=simul(t,xinit,alpha,beta)

% [y,t]=simul(t,xinit)

% t : duration of the simulation

% xinit: initial state

% y: output

% simulation

options = odeset('RelTol',1e-4,'AbsTol',[1e-4 1e-4 1e-4 1e-4 1e-4 ]);

[t,y] = ode45(@modele,t,xinit,options,alpha,beta); % This function computes the output of the ode previously defined.